当前位置:网站首页>Left matching principle of joint index
Left matching principle of joint index
2022-07-06 06:14:00 【Snow peak expensive】
Joint index :
key : ‘index_name_age’(‘name’,‘age’)
scene :
case1:
select * from person_info where name='gxf' and age = '18';
At this time, I will go index_name_age Joint index .
case2:
select * from person_info where name='gxf' ;
At this time, I will go index_name_age Joint index .
case3:
select * from person_info where age = '18';
here Not going index_name_age Joint index . Will scan the whole table .
Be careful
1. Left most prefix The matching principle
mysql Will match all the way to the right Until I met > 、< 、 between 、like Just stop matching .
where a=1 and b=2 and c=3 and d>4;
If set up index(a,b,d,c) be c There is no index .
If set up index(a,b,c,d) Are available to the index .
If set up index(b,c,a,d) Are available to the index .
2.= and in
You can order
If set up index(a,b,c,d).
where a=1 and b=2 and c=3 and d in(4,5);
where a=1 and d in(4,5) and b=2 and c=3 ;
All can be indexed , because mysql Will optimize your SQL Adjust the order to use the index .
Why? case3 Do not go through the joint index :
hypothesis : Now there is a joint index index(col3,col2);
be , There will be one stored in the joint index file B+ Trees , Leaf nodes store two Alice Row data , And on this basis , According to col2 Sort . final result :34 Of Alice It's in line 77 Of Alice In front of .
Now? where col3 = ‘Alice’ and col2=34; Then the leaf node will be found first , I'll find it again 34. That's the index .
if where col2 = 34; Then the joint index file is saved B+ The tree is useless . That is, you can't go through the index .
边栏推荐
猜你喜欢
【Postman】测试(Tests)脚本编写和断言详解
P问题、NP问题、NPC问题、NP-hard问题详解
【微信小程序】搭建开发工具环境
E - 食物链
Configuring OSPF GR features for Huawei devices
[Thesis code] SML part code reading
(中)苹果有开源,但又怎样呢?
Gtest之TEST宏的用法
Buuctf-[[gwctf 2019] I have a database (xiaoyute detailed explanation)
[API interface tool] Introduction to postman interface
随机推荐
Digital triangle model acwing 1015 Picking flowers
Amazon Engineer: eight important experiences I learned in my career
selenium源码通读·9 |DesiredCapabilities类分析
功能安全之故障(fault),错误(error),失效(failure)
Fault, error, failure of functional safety
Buuctf-[bjdctf2020]zjctf, but so (xiaoyute detailed explanation)
Properties file
win10无法操作(删除、剪切)文件
[postman] dynamic variable (also known as mock function)
[leetcode] day96 - the first unique character & ransom letter & letter ectopic word
【eolink】PC客户端安装
Eigen稀疏矩阵操作
联合索引的左匹配原则
【Postman】测试(Tests)脚本编写和断言详解
D - How Many Answers Are Wrong
ESP32 ESP-IDF看门狗TWDT
Basic knowledge of error
[postman] the monitors monitoring API can run periodically
异常检测方法总结
Understanding of processes and threads