mysql表中的a b c三个列建立联合索引,select * from a=1 and b>2 order by c会走索引吗?
a=1 and b>2会用到索引,order by c 就不会走索引了