索引命中规则详解

索引命中规则详解:

t这张表 a,b,c 三个字段组成组合索引

索引命中规则详解:

t这张表 a,b,c 三个字段组成组合索引

select * from t where a=? and b=? and c=?  全命中

select * from t where c=? and b=? and a=?  全命中 解析MySQL的查询优化器会自动调整where子句的条件顺序以使用适合的索引

select * from t where a=?  命中a  解析:最左前缀匹配

select * from t where a=? and b=?  命中a和b  解析:最左前缀匹配

select * from t where a=? or b=?  一个没命中 解析or无法命中

select * from t where a=? and c=?  命中a 解析:最左前缀匹配,中间没有则无法使用索引
 
select * from t where a=? and b in ( x, y, z) and c=?  全部命中 in精确匹配可以使用索引

select * from t where b=?  一个没命中  解析:最左前缀匹配原则

select * from t where b=? and c=?  一个没命中  解析:最左前缀匹配原则

select * from t where a=? and b like 'xxx%'   命中a

select * from t where a=? and b like '%xxx'  命中a和b

select * from t where a

 

你可能感兴趣的:(MySQL,mysql索引,索引,索引命中规则,最左前缀匹配)