mysql索引命中规则

  1. 如果where后面有or,这样不会命中索引如:
select * from student where userName='小明' or age=19;
复制代码

如果想要or后面的也走索引的话,应该是创建两个单列索引

  1. like是以%开头的不会命中索引如:
select * from student where userName like %明
复制代码
  1. 如果列类型是字符串,那一定要在条件中将数据使用引号引用起来,否则不使用索引如:
select * from student where userName='小明' and age=19 and phone=1887821;
复制代码
  1. 没有查询条件,或者查询条件没有建立索引

  2. 查询条件中,在索引列上使用函数(+/-*/)

select * from student where userName='小明' and age-1=19 错误
select * from student where userName='小明' and age=20   正确
复制代码
  1. 采用 not in, not exist

  2. B-tree 索引 is null 不会走, is not null 会走

  3. 负向条件查询不能使用索引。

select * from order where status != 0;
复制代码
  1. 数据区分度不大的字段不宜使用索引 例如:性别,状态等。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值