mysql索引最左原则
最左匹配原则(原理可看第二篇索引结构)。
注意:有复合索引complex(a,b,c)
a) 有查询a=1 and b>1 and c=2,可以用到索引,只能用到a,b两列。
b) 有查询a=1 and c=2 and b=3,可以用到索引,a,b,c的顺序无所谓
c) 有查询b=1 and c=3 , 不能用到索引。
最左匹配原则(原理可看第二篇索引结构)。
注意:有复合索引complex(a,b,c)
a) 有查询a=1 and b>1 and c=2,可以用到索引,只能用到a,b两列。
b) 有查询a=1 and c=2 and b=3,可以用到索引,a,b,c的顺序无所谓
c) 有查询b=1 and c=3 , 不能用到索引。