什么是index的leading column(索引的前导列)?
看到经常有人问此问题!doc的原话,看到了随手记录下!
A leading portion of an index is a set of one or more columns that were specified first and consecutively in the list of columns in the CREATE INDEX statement that created the index. Consider this CREATE INDEX statement:
CREATE INDEX comp_ind ON table1(x, y, z);
- x, xy, and xyz combinations of columns are leading portions of the index
- yz, y, and z combinations of columns are not leading portions of the index
本文解释了数据库索引中前导列的概念,即在创建索引时首先且连续指定的一组列。例如,在索引定义`CREATE INDEX comp_ind ON table1(x,y,z);`中,x、xy和xyz都是该索引的前导列部分。
1643

被折叠的 条评论
为什么被折叠?



