# like 模糊查询 前模糊或者 全模糊不走索引
explain select * from users u where u.name like '%mysql测试'
# or 条件不走索引,只要有一个条件字段没有添加索引,都不走,如果条件都添加的索引,也不一定,测试
的时候发现有时候走,有时候不走,可能数据库做了处理,具体需要先测试一下
explain select * from users u where u.name = 'mysql测试' or u.password ='JspStudy'
# or 条件都是同一个索引字段,走索引
explain select * from users u where u.name= 'mysql测试' or u.name='333'
# 使用 union all 代替 or 这样的话有索引例的就会走索引
explain
select * from users u where u.name = 'mysql测试'
union all
select * from users u where u.password = 'JspStudy'
# in 走索引
explain select * from users u where u.name in ('mysql测试','JspStudy')
# not in 不走索引
explain select * from users u where u.name not in ('mysql测试','JspStudy')
# is null 走索引
explain select * from users u where u.name is null
# is not null 不走索引
explain select * from users u where u.name is not null
# !=、<> 不走索引
explain select * from users u where u.name <> 'mysql测试'
# 隐式转换-不走索引(name 字段为 string类型,这里123为数值类型,进行了类型转换,所以不走索引,改为 '123' 则走索引)
explain select * from users u where u.name = 123
# 函数运算-不走索引
explain select * from users u where date_format(upTime,'%Y-%m-%d') = '2019-07-01'
# and 语句,多条件字段,最多只能用到一个索引,如果需要,可以建组合索引
explain select * from users where id='4' and username ='JspStudy'
————————————————
版权声明:本文为CSDN博主「Muscleheng」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/Muscleheng/article/details/94393024
不走索引查询的几种SQL语句
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- 数据库使用的oracle数据库,可视化管理工具使用的PLSQL 查看表中的索引选中表,右键, view -->in...
- MYSQL索引类型 按逻辑来分: 1.主键索引是一种特殊的唯一索引,不允许有空值 创建、删除语句:alter ta...