9.有一个sql语句select * from t where a=x and b = y a).现在有a和b两个索引,会走哪个索引? b).现在有a,b,(a,b),(b,a)四个索引会走哪个索引? 10. select * from t where a=x and b = y and c > z,有(a,b),(a,b,c),(b,c,a)会走哪个索引? 这个怎么答呀