mysql索引失效的情况
2024-01-08 21:40:30
目录
给students表中插入数据
INSERT INTO students(sname,age,score,time) VALUES('小明',22,100,now());
INSERT INTO students(sname,age,score,time) VALUES('小红',23,80,now());
INSERT INTO students(sname,age,score,time) VALUES( '小绿',24,80, now());
INSERT INTO students(sname,age,score,time)VALUES('小黑',23,70,now());
创建联合索引
alter table students add index idx_sname_age_score(sname,age,score) ;
1破坏最左前缀法则
联合索引从左到右的顺序为sname,age,score,如果where之后的查询语句,破坏索引的顺序,就会出现索引失效。如:
explain select * from students where age = 22 and score = 100;
2在索引列上做任何计算、函数操作,会导致索引失效而转向全表扫描。
如:使用left函数
explain select * from students where left(sname,2) = "小明";
3存储引擎不能使用索引中范围条件右边的列
联合索引sname,age,score,只能使用sname,age
explain select * from students where sname="小明" and age > 22 and score = 100;
4Mysql在使用不等于时无法使用索引会导致全表查询
sname索引无法使用,会进行全表查询
explain select * from students where sname !="小明";
5is null可以使用索引,但是is not null无法使用索引
explain select * from students where sname is null;
explain select * from students where sname is not null;
6like以通配符开头会使索引失效导致全表扫描。
lexplain select * from students where sname like "%明";
7字符串不加单引号或双引号索引会失效。
explain select *from students where sname = 123;
8使用or连接时索引失效
explain select * from students where sname="小明" or age = 22;
参考
链接: 索引优化
文章来源:https://blog.csdn.net/weixin_54174344/article/details/135464719
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。 如若内容造成侵权/违法违规/事实不符,请联系我的编程经验分享网邮箱:veading@qq.com进行投诉反馈,一经查实,立即删除!
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。 如若内容造成侵权/违法违规/事实不符,请联系我的编程经验分享网邮箱:veading@qq.com进行投诉反馈,一经查实,立即删除!