Non-Clustered Index on a Clustered Index column improves performance?
问题 In SQL Server 2005, the query analyzer has told me many times to create a non-clustered index on a primary ID column of a table which already has a clustered index. After following this recommendation, the query execution plan reports that the query should be faster. Why would a Non-Clustered index on the same column (with the same sort order) be faster than a Clustered index? 回答1: A clustered index has all the data for the table while a non clustered index only has the column + the location