可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 由 翻译 强力驱动 问题: Can someone explain this two - Index Key Column VS Index Included Column? Currently, I have an index that has 4 Index Key Column and 0 Included Column. Thanks 回答1: Index key columns are part of the b-tree of the index. Included columns are not. Take two indexes: CREATE INDEX index1 ON table1 ( col1 , col2 , col3 ) CREATE INDEX index2 ON table1 ( col1 ) INCLUDE ( col2 , col3 ) index1 is better suited for this kind of query: SELECT * FROM table1 WHERE col1 = x AND col2 = y AND col3 = z Whereas index2 is better suited for this kind of