关于是否需要为Cluster Index中的字段另外建立index
假设在表ta中Fcode,DeptNo,AcctNo为组合primary key(也就是Fcode,DeptNo,AcctNo为一个Cluster Index),假如我经常需要执行以下语句,
请问是否另外需要为Fcode或DeptNo建立索引,是单独为fcode/deptNo每个字段建立索引还是fcode与deptNo一起建立组合non-cluster索引,请问是为什么要那样处理?谢谢!
Select * from ta where fcode='某值1'
Select * from ta where DeptNo='某值2'
Select * from ta where fcode='某值1' and DeptNo='某值2'
[解决办法]
太對了!完全正確!