Background information
In Microsoft SQL Server databases you can create a clustered index. In a clustered index, the physical order of the rows in the table is the same as the logical (indexed) order of the index key values. A table can contain only one clustered index. UPDATE and DELETE operations are often accelerated by clustered indexes because these operations require large amounts of data to be read. Creating or modifying a clustered index can be time-consuming, because it is during these operations that the table's rows are reorganized on disk.
Consider using a clustered index for:
state
column that contains only 50 unique state codes.Create a clustered index
To modify an existing index, select the index from the list.
Select the Create as CLUSTERED check box.
The index is created in the database when you save the database diagram.