I read this post: and just want to make sure I've understood the difference between clustered index and nonclustered index.
Clustered Index: actually sorts the data on the field(s) indicated.
Nonclustered Index: doesn't sort the data, but has a pointer that can find which page and row the data is located. For example, if I have a table with employee id, first name, last name. If the nonclustered index is on first name and last name then it's easier to fetch the data from the page and record.
Please let me know if I've understood correctly.
Clustered Index: actually sorts the data on the field(s) indicated.
Nonclustered Index: doesn't sort the data, but has a pointer that can find which page and row the data is located. For example, if I have a table with employee id, first name, last name. If the nonclustered index is on first name and last name then it's easier to fetch the data from the page and record.
Please let me know if I've understood correctly.