Mid
Indexes
SQL & Databases
What is the difference between a clustered and a nonclustered index (query impact)?
Short answer: Clustered index defines physical row order (one per table, often PK). Nonclustered is a separate structure pointing to heap/clustered keys. Queries filtering/sorting on clustered keys can avoid sorts and lookups.
Relate to query plans: Clustered Index Seek vs Key Lookup vs Bookmark Lookup.
Share this Q&A
Share preview image: https://www.toolliyo.com/images/toolliyo-logo.png