是good
或doesn't matter
或bad
包括主覆蓋索引中的主鍵?好的/無關/包含主鍵的覆蓋索引?
CREATE NONCLUSTERED INDEX index_name_here ON dbo.table_name_here
(column_to_index_here)
INCLUDE (primary_key_column,other_column_here)
WITH(STATISTICS_NORECOMPUTE=OFF, IGNORE_DUP_KEY=OFF, --<default junk from SSMS
ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
GO
我在想這沒關係,因爲無論如何PK會在索引中。
編輯 - 澄清。
我的primary_key_column
是聚集在一起的,但是當它不是太時,你可以解釋/給出信息。
我將加入dbo.table_name_here
的column_to_index_here
列,然後將加入primary_key_column
和other_column_here
的其他表格。
你的聚集索引是什麼? –