Difference between Cluster and Non-cluster index in SQL

AjmeraInfo picture AjmeraInfo · Mar 3, 2010 · Viewed 13.9k times · Source

Just for knowledge in interview question, and my knowledge.

SQL - Difference between Cluster and Non-cluster index?

Answer

kemiller2002 picture kemiller2002 · Mar 3, 2010

A link describing the two.

http://www.mssqlcity.com/FAQ/General/clustered_vs_nonclustered_indexes.htm

http://www.sql-server-performance.com/articles/per/index_data_structures_p1.aspx

The difference is in the physical order of the records in the table relative to the index. A clustered index is physically ordered that way in the table.