nonclustered
A nonclustered index is a database index that provides fast access to data without altering the physical order of the data rows in a table. It stores a separate structure containing index keys and pointers to the corresponding data rows, allowing quick lookups, range scans, and joins based on the indexed columns.
In contrast to a clustered index, which determines the physical order of data within a table, a
The typical structure of a nonclustered index includes the indexed column values and a pointer to the
Maintenance and storage considerations are important: nonclustered indexes require extra space and must be updated on