从一道题开始分析:
假设某个表有一个联合索引(c1,c2,c3,c4)一下——只能使用该联合索引的c1,c2,c3部分
A where c1=x and c2=x and c4>x and c3=x
B where c1=x and c2=x and c4=x order by c3
C where c1=x and c4= x group by c3,c2
D where c1=? and c5=? order by c2,c3
E where c1=? and c2=? and c5=? order by c2,c3
有谁知道下面A-E能否可以使用索引!!为什么?
OK;开始
创建表:
插入数据:
稍作改变:
使用group by 一般先生成临时文件,在进行排序
order by 哪?同上面类似啦
稍微改变一下,分析:知道原理都很容易啦!
上面问题答案是多少?反正我是不知道!
总结规律可得: