mysql 索引命中规则 不命中的情况

mysql 索引命中规则 不命中的情况

    • 多列索引 遵循:最左匹配原则
    • 不会命中索引的情况

当一条sql语句提交给mysql数据库进行查询的时候需要经历以下几步
1、先在where解析这一步把当前的查询语句中的查询条件分解成每一个独立的条件单元
2、mysql会自动将sql拆分重组
3、然后where条件会在B-tree index这部分进行索引匹配,如果命中索引,就会定位到指定的table records位置。如果没有命中,则只能采用全部扫描的方式
4、根据当前查询字段返回对应的数据值


多列索引 遵循:最左匹配原则

ALTER TABLE student ADD INDEX userName_age_phone_index (userName,age,phone);
这种创建索引的方式在多项查找时要优于单一索引,由于mysql的采用的b+树方式,因此不在需要扫描任何记录,直接就可以得到满足需求的结果集。而这种方式其实相当于创建了三个索引(userName),(userName,age),(userName,age,phone)。

因此在当进行以下查询时仍会命中mysql索引
select * from student where userName=‘小明’;
select * from student where userName=‘小明’ and age=19;
select * from student where userName=‘小明’ and age=19 and phone=‘1887821’;


不会命中索引的情况

1.如果where后面有or,这样不会命中索引如:
select * from student where userName=‘小明’ or age=19;
如果想要or后面的也走索引的话,应该是创建两个单列索引

2.like是以%开头的不会命中索引如:
select * from student where userName like %明

3.如果列类型是字符串,那一定要在条件中将数据使用引号引用起来,否则不使用索引如:
select * from student where userName=‘小明’ and age=19 and phone=1887821 ;
phone 定义的数据格式是字符串,但是sql中使用的整型

  1. 没有查询条件,或者查询条件没有建立索引

  2. 查询条件中,在索引列上使用函数(+/-*/)
    select * from student where userName=‘小明’ and age-1=19 错误
    select * from student where userName=‘小明’ and age=20 正确

  3. 采用 not in, not exist,!=, <> , is null , is not null 不会命中索引

你可能感兴趣的:(mysql,mysql,索引,索引命中)