mysql索引最左原则实例代码
程序员文章站
2022-07-09 13:30:15
前言
最近在看mysql索引的知识,看到组合索引的时候,有一个最左侧原则,通过查找相关资料深入学习了下,下面话不多说了,来一起看看详细的介绍吧
建表
cr...
前言
最近在看mysql索引的知识,看到组合索引的时候,有一个最左侧原则,通过查找相关资料深入学习了下,下面话不多说了,来一起看看详细的介绍吧
建表
create table `user` ( `id` int(10) unsigned not null auto_increment, `name` varchar(10) default null, `sex` tinyint(1) default null, `age` tinyint(2) default null, primary key (`id`), key `index_user` (`name`,`age`) using btree ) engine=innodb auto_increment=4 default charset=utf8mb4;
测试sql
第一种
mysql> explain select * from `user` where name="tom" \g *************************** 1. row *************************** id: 1 select_type: simple table: user partitions: null type: ref possible_keys: index_user key: index_user key_len: 43 ref: const rows: 1 filtered: 100.00 extra: null
第二种
mysql> explain select * from `user` where age=18 and name="tom" \g *************************** 1. row *************************** id: 1 select_type: simple table: user partitions: null type: ref possible_keys: index_user key: index_user key_len: 45 ref: const,const rows: 1 filtered: 100.00 extra: null
第三种
mysql> explain select * from `user` where age=18 \g *************************** 1. row *************************** id: 1 select_type: simple table: user partitions: null type: all possible_keys: null key: null key_len: null ref: null rows: 3 filtered: 33.33 extra: using where 1 row in set, 1 warning (0.00 sec)
第四种
mysql> explain select * from `user` where name="tom" and age=18 \g *************************** 1. row *************************** id: 1 select_type: simple table: user partitions: null type: ref possible_keys: index_user key: index_user key_len: 45 ref: const,const rows: 1 filtered: 100.00 extra: null 1 row in set, 1 warning (0.00 sec)
总结
由此可见,只有sql中where包含联合索引的首个字段的查询才能命中索引,这个叫索引的最左匹配特性。 联合索引的使用在写where条件的顺序无关,mysql查询分析会进行优化而使用索引。但是减轻查询分析器的压力,最好和索引的从左到右的顺序一致。
b+树的数据项是复合的数据结构,比如(name,age,sex)的时候,b+树是按照从左到右的顺序来建立搜索树的,比如当(张三,20,f)这样的数据来检索的时候,b+树会优先比较name来确定下一步的所搜方向,如果name相同再依次比较age和sex,最后得到检索的数据;但当(20,f)这样的没有name的数据来的时候,b+树就不知道第一步该查哪个节点,因为建立搜索树的时候name就是第一个比较因子,必须要先根据name来搜索才能知道下一步去哪里查询。
好了,以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,谢谢大家对的支持。
上一篇: 浅谈Java分布式架构下如何实现分布式锁