大佬们,问个问题
T1表中有a,b,c三个字段,其中a,b字段建立个联合索引,c字段建了个单列索引
select * from T1 where a = '1' and c = '1';
这个语句为什么会走联合索引呢?
11