【33期】分别谈谈联合索引生效和失效的条件
程序员的成长之路
共 2361字,需浏览 5分钟
·
2020-09-14 22:27
阅读本文大概需要 3.5 分钟。
来自:https://blog.csdn.net/qq_35275233
联合索引失效的条件
create table myTest(
a int,
b int,
c int,
KEY a(a,b,c)
);
select * from myTest where a=3 and b=5 and c=4; ---- abc顺序
select * from myTest where c=4 and b=6 and a=3;
select * from myTest where a=3 and c=7;
select * from myTest where a=3 and b>7 and c=3; ---- b范围值,断点,阻塞了c的索引
select * from myTest where b=3 and c=4; --- 联合索引必须按照顺序使用,并且需要全部使用
select * from myTest where a>4 and b=7 and c=9;
select * from myTest where a=3 order by b;
select * from myTest where a=3 order by c;
select * from mytable where b=3 order by a;
最后说说索引失效的条件
不在索引列上做任何操作(计算、函数、(自动or手动)类型转换),会导致索引失效而转向全表扫描
存储引擎不能使用索引范围条件右边的列
尽量使用覆盖索引(只访问索引的查询(索引列和查询列一致)),减少select *
mysql在使用不等于(!=或者<>)的时候无法使用索引会导致全表扫描
is null,is not null也无法使用索引
like以通配符开头(’%abc…’)mysql索引失效会变成全表扫描的操作。
SELECT * from staffs where name='2000';
-- 因为mysql会在底层对其进行隐式的类型转换
SELECT * from staffs where name=2000;
--- 未使用索引
对于单键索引,尽量选择针对当前query过滤性更好的索引
在选择组合索引的时候,当前Query中过滤性最好的字段在索引字段顺序中,位置越靠前越好。
在选择组合索引的时候,尽量选择可以能够包含当前query中的where子句中更多字段的索引
尽可能通过分析统计信息和调整query的写法来达到选择合适索引的目的
推荐阅读:
【31期】了解什么是 redis 的雪崩、穿透和击穿?redis 崩溃之后会怎么样?应对措施是什么
【31期】了解什么是 redis 的雪崩、穿透和击穿?redis 崩溃之后会怎么样?应对措施是什么
微信扫描二维码,关注我的公众号
朕已阅
评论