mysql的联合索引利用情况

目录

查询条件对应的列值的类型与列对应的类型不一致

只有一个联合索引且包含非主键外全部列

查询条件全部为等值查询

查询条件有范围查询

有联合索引未包含全部列


在使用 mysql 进行数据存储时,经常用到联合索引,但是使用联合索引有一些注意点,在此记录一下。

使用的 mysql 版本为 8.0.28

定义表结构如下

CREATE TABLE test
(
id INT,
a CHAR(1),
b CHAR(1),
c CHAR(1),
PRIMARY KEY(id),
INDEX idx_union(a,b,c)
);

INSERT INTO test(id,a,b,c) VALUES(1,1,1,1);
INSERT INTO test(id,a,b,c) VALUES(2,2,2,2);
INSERT INTO test(id,a,b,c) VALUES(3,3,3,3);
INSERT INTO test(id,a,b,c) VALUES(4,4,4,4);
INSERT INTO test(id,a,b,c) VALUES(5,5,5,5);
INSERT INTO test(id,a,b,c) VALUES(6,6,6,6);
INSERT INTO test(id,a,b,c) VALUES(7,7,7,7);

可以看到,这里的类型为数字,但是存储的类型为 char,在插入过程中会进行转化。

查询条件对应的列值的类型与列对应的类型不一致

这种情况会有索引无法充分利用的情况,在优化器执行时会有警告。

mysql> EXPLAIN SELECT * FROM test WHERE a = 1 and b = 1 and c = 1;
+----+-------------+-------+------------+-------+---------------+-----------+---------+------+------+----------+--------------------------+
| id | select_type | table | partitions | type  | possible_keys | key       | key_len | ref  | rows | filtered | Extra                    |
+----+-------------+-------+------------+-------+---------------+-----------+---------+------+------+----------+--------------------------+
|  1 | SIMPLE      | test  | NULL       | index | idx_union     | idx_union | 15      | NULL |    7 |    14.29 | Using where; Using index |
+----+-------------+-------+------------+-------+---------------+-----------+---------+------+------+----------+--------------------------+
1 row in set, 5 warnings (0.01 sec)mysql> show warnings;
+---------+------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Level   | Code | Message                                                                                                                                                                                                                                |
+---------+------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Warning | 1739 | Cannot use ref access on index 'idx_union' due to type or collation conversion on field 'a'                                                                                                                                            |
| Warning | 1739 | Cannot use range access on index 'idx_union' due to type or collation conversion on field 'a'                                                                                                                                          |
| Warning | 1739 | Cannot use range access on index 'idx_union' due to type or collation conversion on field 'b'                                                                                                                                          |
| Warning | 1739 | Cannot use range access on index 'idx_union' due to type or collation conversion on field 'c'                                                                                                                                          |
| Note    | 1003 | /* select#1 */ select `ican`.`test`.`id` AS `id`,`ican`.`test`.`a` AS `a`,`ican`.`test`.`b` AS `b`,`ican`.`test`.`c` AS `c` from `ican`.`test` where ((`ican`.`test`.`a` = 1) and (`ican`.`test`.`b` = 1) and (`ican`.`test`.`c` = 1)) |
+---------+------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
5 rows in set (0.00 sec)mysql> EXPLAIN SELECT * FROM test WHERE a = 1 and b = 1;
+----+-------------+-------+------------+-------+---------------+-----------+---------+------+------+----------+--------------------------+
| id | select_type | table | partitions | type  | possible_keys | key       | key_len | ref  | rows | filtered | Extra                    |
+----+-------------+-------+------------+-------+---------------+-----------+---------+------+------+----------+--------------------------+
|  1 | SIMPLE      | test  | NULL       | index | idx_union     | idx_union | 15      | NULL |    7 |    14.29 | Using where; Using index |
+----+-------------+-------+------------+-------+---------------+-----------+---------+------+------+----------+--------------------------+
1 row in set, 4 warnings (0.00 sec)mysql> show warnings;
+---------+------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Level   | Code | Message                                                                                                                                                                                                    |
+---------+------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Warning | 1739 | Cannot use ref access on index 'idx_union' due to type or collation conversion on field 'a'                                                                                                                |
| Warning | 1739 | Cannot use range access on index 'idx_union' due to type or collation conversion on field 'a'                                                                                                              |
| Warning | 1739 | Cannot use range access on index 'idx_union' due to type or collation conversion on field 'b'                                                                                                              |
| Note    | 1003 | /* select#1 */ select `ican`.`test`.`id` AS `id`,`ican`.`test`.`a` AS `a`,`ican`.`test`.`b` AS `b`,`ican`.`test`.`c` AS `c` from `ican`.`test` where ((`ican`.`test`.`a` = 1) and (`ican`.`test`.`b` = 1)) |
+---------+------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
4 rows in set (0.00 sec)mysql> EXPLAIN SELECT * FROM test WHERE a = 1 and c = 1;
+----+-------------+-------+------------+-------+---------------+-----------+---------+------+------+----------+--------------------------+
| id | select_type | table | partitions | type  | possible_keys | key       | key_len | ref  | rows | filtered | Extra                    |
+----+-------------+-------+------------+-------+---------------+-----------+---------+------+------+----------+--------------------------+
|  1 | SIMPLE      | test  | NULL       | index | idx_union     | idx_union | 15      | NULL |    7 |    14.29 | Using where; Using index |
+----+-------------+-------+------------+-------+---------------+-----------+---------+------+------+----------+--------------------------+
1 row in set, 4 warnings (0.01 sec)mysql> show warnings;
+---------+------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Level   | Code | Message                                                                                                                                                                                                    |
+---------+------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Warning | 1739 | Cannot use ref access on index 'idx_union' due to type or collation conversion on field 'a'                                                                                                                |
| Warning | 1739 | Cannot use range access on index 'idx_union' due to type or collation conversion on field 'a'                                                                                                              |
| Warning | 1739 | Cannot use range access on index 'idx_union' due to type or collation conversion on field 'c'                                                                                                              |
| Note    | 1003 | /* select#1 */ select `ican`.`test`.`id` AS `id`,`ican`.`test`.`a` AS `a`,`ican`.`test`.`b` AS `b`,`ican`.`test`.`c` AS `c` from `ican`.`test` where ((`ican`.`test`.`a` = 1) and (`ican`.`test`.`c` = 1)) |
+---------+------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
4 rows in set (0.01 sec)mysql> EXPLAIN SELECT * FROM test WHERE b = 1 and c = 1;
+----+-------------+-------+------------+-------+---------------+-----------+---------+------+------+----------+--------------------------+
| id | select_type | table | partitions | type  | possible_keys | key       | key_len | ref  | rows | filtered | Extra                    |
+----+-------------+-------+------------+-------+---------------+-----------+---------+------+------+----------+--------------------------+
|  1 | SIMPLE      | test  | NULL       | index | NULL          | idx_union | 15      | NULL |    7 |    14.29 | Using where; Using index |
+----+-------------+-------+------------+-------+---------------+-----------+---------+------+------+----------+--------------------------+
1 row in set, 3 warnings (0.00 sec)mysql> show warnings;
+---------+------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Level   | Code | Message                                                                                                                                                                                                    |
+---------+------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Warning | 1739 | Cannot use range access on index 'idx_union' due to type or collation conversion on field 'b'                                                                                                              |
| Warning | 1739 | Cannot use range access on index 'idx_union' due to type or collation conversion on field 'c'                                                                                                              |
| Note    | 1003 | /* select#1 */ select `ican`.`test`.`id` AS `id`,`ican`.`test`.`a` AS `a`,`ican`.`test`.`b` AS `b`,`ican`.`test`.`c` AS `c` from `ican`.`test` where ((`ican`.`test`.`b` = 1) and (`ican`.`test`.`c` = 1)) |
+---------+------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
3 rows in set (0.00 sec)mysql> EXPLAIN SELECT * FROM test WHERE a = 1;
+----+-------------+-------+------------+-------+---------------+-----------+---------+------+------+----------+--------------------------+
| id | select_type | table | partitions | type  | possible_keys | key       | key_len | ref  | rows | filtered | Extra                    |
+----+-------------+-------+------------+-------+---------------+-----------+---------+------+------+----------+--------------------------+
|  1 | SIMPLE      | test  | NULL       | index | idx_union     | idx_union | 15      | NULL |    7 |    14.29 | Using where; Using index |
+----+-------------+-------+------------+-------+---------------+-----------+---------+------+------+----------+--------------------------+
1 row in set, 3 warnings (0.00 sec)mysql> show warnings;
+---------+------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Level   | Code | Message                                                                                                                                                                      |
+---------+------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Warning | 1739 | Cannot use ref access on index 'idx_union' due to type or collation conversion on field 'a'                                                                                  |
| Warning | 1739 | Cannot use range access on index 'idx_union' due to type or collation conversion on field 'a'                                                                                |
| Note    | 1003 | /* select#1 */ select `ican`.`test`.`id` AS `id`,`ican`.`test`.`a` AS `a`,`ican`.`test`.`b` AS `b`,`ican`.`test`.`c` AS `c` from `ican`.`test` where (`ican`.`test`.`a` = 1) |
+---------+------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
3 rows in set (0.00 sec)mysql> EXPLAIN SELECT * FROM test WHERE b = 1;
+----+-------------+-------+------------+-------+---------------+-----------+---------+------+------+----------+--------------------------+
| id | select_type | table | partitions | type  | possible_keys | key       | key_len | ref  | rows | filtered | Extra                    |
+----+-------------+-------+------------+-------+---------------+-----------+---------+------+------+----------+--------------------------+
|  1 | SIMPLE      | test  | NULL       | index | NULL          | idx_union | 15      | NULL |    7 |    14.29 | Using where; Using index |
+----+-------------+-------+------------+-------+---------------+-----------+---------+------+------+----------+--------------------------+
1 row in set, 2 warnings (0.01 sec)mysql> show warnings;
+---------+------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Level   | Code | Message                                                                                                                                                                      |
+---------+------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Warning | 1739 | Cannot use range access on index 'idx_union' due to type or collation conversion on field 'b'                                                                                |
| Note    | 1003 | /* select#1 */ select `ican`.`test`.`id` AS `id`,`ican`.`test`.`a` AS `a`,`ican`.`test`.`b` AS `b`,`ican`.`test`.`c` AS `c` from `ican`.`test` where (`ican`.`test`.`b` = 1) |
+---------+------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
2 rows in set (0.01 sec)mysql> EXPLAIN SELECT * FROM test WHERE c = 1;
+----+-------------+-------+------------+-------+---------------+-----------+---------+------+------+----------+--------------------------+
| id | select_type | table | partitions | type  | possible_keys | key       | key_len | ref  | rows | filtered | Extra                    |
+----+-------------+-------+------------+-------+---------------+-----------+---------+------+------+----------+--------------------------+
|  1 | SIMPLE      | test  | NULL       | index | NULL          | idx_union | 15      | NULL |    7 |    14.29 | Using where; Using index |
+----+-------------+-------+------------+-------+---------------+-----------+---------+------+------+----------+--------------------------+
1 row in set, 2 warnings (0.01 sec)mysql> show warnings;
+---------+------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Level   | Code | Message                                                                                                                                                                      |
+---------+------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Warning | 1739 | Cannot use range access on index 'idx_union' due to type or collation conversion on field 'c'                                                                                |
| Note    | 1003 | /* select#1 */ select `ican`.`test`.`id` AS `id`,`ican`.`test`.`a` AS `a`,`ican`.`test`.`b` AS `b`,`ican`.`test`.`c` AS `c` from `ican`.`test` where (`ican`.`test`.`c` = 1) |
+---------+------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
2 rows in set (0.00 sec)

修改类型为一致,则正常执行

mysql> EXPLAIN SELECT * FROM test WHERE a = '1' and b = '1' and c = '1';
+----+-------------+-------+------------+------+---------------+-----------+---------+-------------------+------+----------+--------------------------+
| id | select_type | table | partitions | type | possible_keys | key       | key_len | ref               | rows | filtered | Extra                    |
+----+-------------+-------+------------+------+---------------+-----------+---------+-------------------+------+----------+--------------------------+
|  1 | SIMPLE      | test  | NULL       | ref  | idx_union     | idx_union | 15      | const,const,const |    1 |   100.00 | Using where; Using index |
+----+-------------+-------+------------+------+---------------+-----------+---------+-------------------+------+----------+--------------------------+
1 row in set, 1 warning (0.01 sec)mysql> show warnings;
+-------+------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Level | Code | Message                                                                                                                                                                                                                                      |
+-------+------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Note  | 1003 | /* select#1 */ select `ican`.`test`.`id` AS `id`,`ican`.`test`.`a` AS `a`,`ican`.`test`.`b` AS `b`,`ican`.`test`.`c` AS `c` from `ican`.`test` where ((`ican`.`test`.`c` = '1') and (`ican`.`test`.`b` = '1') and (`ican`.`test`.`a` = '1')) |
+-------+------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.01 sec)mysql> EXPLAIN SELECT * FROM test WHERE a = '1';
+----+-------------+-------+------------+------+---------------+-----------+---------+-------+------+----------+--------------------------+
| id | select_type | table | partitions | type | possible_keys | key       | key_len | ref   | rows | filtered | Extra                    |
+----+-------------+-------+------------+------+---------------+-----------+---------+-------+------+----------+--------------------------+
|  1 | SIMPLE      | test  | NULL       | ref  | idx_union     | idx_union | 5       | const |    1 |   100.00 | Using where; Using index |
+----+-------------+-------+------------+------+---------------+-----------+---------+-------+------+----------+--------------------------+
1 row in set, 1 warning (0.00 sec)mysql> show warnings;
+-------+------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Level | Code | Message                                                                                                                                                                        |
+-------+------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Note  | 1003 | /* select#1 */ select `ican`.`test`.`id` AS `id`,`ican`.`test`.`a` AS `a`,`ican`.`test`.`b` AS `b`,`ican`.`test`.`c` AS `c` from `ican`.`test` where (`ican`.`test`.`a` = '1') |
+-------+------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.01 sec)mysql> EXPLAIN SELECT * FROM test WHERE b = '1';
+----+-------------+-------+------------+-------+---------------+-----------+---------+------+------+----------+--------------------------+
| id | select_type | table | partitions | type  | possible_keys | key       | key_len | ref  | rows | filtered | Extra                    |
+----+-------------+-------+------------+-------+---------------+-----------+---------+------+------+----------+--------------------------+
|  1 | SIMPLE      | test  | NULL       | index | idx_union     | idx_union | 15      | NULL |    7 |    14.29 | Using where; Using index |
+----+-------------+-------+------------+-------+---------------+-----------+---------+------+------+----------+--------------------------+
1 row in set, 1 warning (0.00 sec)mysql> show warnings;
+-------+------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Level | Code | Message                                                                                                                                                                        |
+-------+------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Note  | 1003 | /* select#1 */ select `ican`.`test`.`id` AS `id`,`ican`.`test`.`a` AS `a`,`ican`.`test`.`b` AS `b`,`ican`.`test`.`c` AS `c` from `ican`.`test` where (`ican`.`test`.`b` = '1') |
+-------+------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.01 sec)mysql> EXPLAIN SELECT * FROM test WHERE c = '1';
+----+-------------+-------+------------+-------+---------------+-----------+---------+------+------+----------+--------------------------+
| id | select_type | table | partitions | type  | possible_keys | key       | key_len | ref  | rows | filtered | Extra                    |
+----+-------------+-------+------------+-------+---------------+-----------+---------+------+------+----------+--------------------------+
|  1 | SIMPLE      | test  | NULL       | index | idx_union     | idx_union | 15      | NULL |    7 |    14.29 | Using where; Using index |
+----+-------------+-------+------------+-------+---------------+-----------+---------+------+------+----------+--------------------------+
1 row in set, 1 warning (0.01 sec)mysql> show warnings;
+-------+------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Level | Code | Message                                                                                                                                                                        |
+-------+------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Note  | 1003 | /* select#1 */ select `ican`.`test`.`id` AS `id`,`ican`.`test`.`a` AS `a`,`ican`.`test`.`b` AS `b`,`ican`.`test`.`c` AS `c` from `ican`.`test` where (`ican`.`test`.`c` = '1') |
+-------+------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.01 sec)

尤其是最左列的类型一致后,type 列从 index 变为 ref。

只有一个联合索引且包含非主键外全部列

查询条件全部为等值查询

sql查询条件typeExtrarefrowsfiltered示例sql说明
符合索引中全部列查询
或者按照索引定义的最左列顺序查询
refUsing where; Using index对应值为const

对应的数量为等值查询列数量
符合要求的行数100%EXPLAIN SELECT * FROM test WHERE a = '1' and b = '1' and c = '1';
EXPLAIN SELECT * FROM test WHERE a = '1' and b = '1';
EXPLAIN SELECT * FROM test WHERE a = '1';
充分利用了索引
符合索引中部分列查询
且包含索引定义的最左列
refUsing where; Using index对应值为const

对应的数量为等值查询列数量
符合要求的行数非100%EXPLAIN SELECT * FROM test WHERE a = '1' and c = '1';部分利用了索引
符合索引中部分列查询
且不包含索引定义的最左列
indexUsing where; Using indexNULL索引中数据总行数非100%EXPLAIN SELECT * FROM test WHERE b = '1' and c = '1';
EXPLAIN SELECT * FROM test WHERE b = '1';
EXPLAIN SELECT * FROM test WHERE c = '1';
部分利用了索引

可以看到,在使用联合索引的时候有一种情况特殊

非联合索引首列进行查询,最终 type 为 index。

查询条件有范围查询

sql查询条件typeExtrarefrowsfiltered示例sql说明
符合索引中全部列查询或者按照索引定义的最左列顺序查询
且只有一个范围查询
rangeUsing where; Using indexNULL符合要求的行数100%EXPLAIN SELECT * FROM test WHERE a = '1' and b = '1' and c > '1';
EXPLAIN SELECT * FROM test WHERE a = '1' and b > '1';
EXPLAIN SELECT * FROM test WHERE a > '1';
利用了索引,完全使用了最左匹配原则
符合索引中全部列查询或者按照索引定义的最左列顺序查询
且不止一个范围查询
rangeUsing where; Using indexNULL符合要求的行数非100%EXPLAIN SELECT * FROM test WHERE a = '1' and b > '1' and c > '1';
EXPLAIN SELECT * FROM test WHERE a > '1' and b > '1' and c > '1';
EXPLAIN SELECT * FROM test WHERE a > '1' and c > '1';
利用了索引,部分使用了最左匹配原则
符合索引中部分列查询
且包含索引定义的最左列
且最少一个范围查询
refUsing where; Using index对应值为const

对应的数量为等值查询列数量
符合要求的行数非100%EXPLAIN SELECT * FROM test WHERE a = '1' and c > '1';利用了索引,部分使用了最左匹配原则
符合索引中部分列查询
且不包含索引定义的最左列
indexUsing where; Using indexNULL索引中数据总行数非100%EXPLAIN SELECT * FROM test WHERE b = '1' and c > '1';
EXPLAIN SELECT * FROM test WHERE b > '1' and c > '1';
EXPLAIN SELECT * FROM test WHERE c > '1';
利用了索引,未使用最左匹配原则

可以看到,在使用联合索引的时候有两种情况特殊

  • 通过最左列进行等值查询,间隔的列执行范围查询,最终 type 为 ref。
  • 不包含最左列,使用了等值或者范围查询或者两者的组合。

有联合索引未包含全部列

ALTER TABLE test ADD COLUMN d CHAR(1);

sql查询条件typeExtrarefrowsfiltered示例sql说明
符合索引中全部列查询
或者按照索引定义的最左列顺序查询
且查询条件为全部列
refUsing index condition对应值为const

对应的数量为等值查询列数量
符合要求的行数100%EXPLAIN SELECT * FROM test WHERE a = '1' and b = '1' and c = '1';
EXPLAIN SELECT * FROM test WHERE a = '1' and b = '1';
EXPLAIN SELECT * FROM test WHERE a = '1';
部分利用了索引,部分数据需要通过回表查询缺失的数据
符合索引中全部列查询
或者按照索引定义的最左列顺序查询
且查询条件为联合索引全部列
refUsing where; Using index对应值为const

对应的数量为等值查询列数量
符合要求的行数100%EXPLAIN SELECT a,b,c FROM test WHERE a = '1' and b = '1' and c = '1';
EXPLAIN SELECT a,b,c FROM test WHERE a = '1' and b = '1';
EXPLAIN SELECT a,b,c FROM test WHERE a = '1';
充分利用了索引
符合索引中部分列查询
且包含索引定义的最左列
且查询条件为全部列
refUsing index condition对应值为const

对应的数量为等值查询列数量
符合要求的行数非100%EXPLAIN SELECT * FROM test WHERE a = '1' and c = '1';部分利用了索引,部分数据需要通过回表查询缺失的数据
符合索引中部分列查询
且包含索引定义的最左列
且查询条件为联合索引全部列
refUsing where; Using index对应值为const

对应的数量为等值查询列数量
符合要求的行数非100%EXPLAIN SELECT a,b,c FROM test WHERE a = '1' and c = '1';部分利用了索引
符合索引中部分列查询
且不包含索引定义的最左列
且查询条件为全部列
ALLUsing whereNULL索引中数据总行数非100%EXPLAIN SELECT * FROM test WHERE b = '1' and c = '1';
EXPLAIN SELECT * FROM test WHERE b = '1';
EXPLAIN SELECT * FROM test WHERE c = '1';
未利用索引
符合索引中部分列查询
且不包含索引定义的最左列
且查询条件为联合索引全部列
indexUsing where; Using indexNULL索引中数据总行数非100%EXPLAIN SELECT a,b,c FROM test WHERE b = '1' and c = '1';
EXPLAIN SELECT a,b,c FROM test WHERE b = '1';
EXPLAIN SELECT a,b,c FROM test WHERE c = '1';
部分利用了索引

有的 Extra 信息为 Using index condition,表明使用了回表查询。 

从 mysql 5.6 开始添加的功能,但是看官网链接里 5.6 相关的删除了,最老的是 5.7。

https://dev.mysql.com/doc/refman/5.6/en/index-condition-pushdown-optimization.html

https://dev.mysql.com/doc/refman/5.7/en/index-condition-pushdown-optimization.html

5.6 的链接重定向到 8.0 的链接。 

https://dev.mysql.com/doc/refman/8.0/en/index-condition-pushdown-optimization.html

查询时不包含首列,查询结果查询全部会直接全表扫描。

针对联合索引等值查询乱序的情况,优化器在执行 sql 之前会将查询条件进行调整来适应索引定义的列的顺序,通过 cbo 计算查询的代价,从而匹配适合的索引,如果一个都没匹配到,则执行全表扫描。

参考链接

https://www.cnblogs.com/ql211lin/p/11124574.html

https://www.cnblogs.com/zhp-king/p/7250810.html

https://www.cnblogs.com/wy123/p/7366486.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/649670.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

git checkout和git switch的区别

git checkout 和 git switch 是 Git 中用于切换分支的命令,但它们在某些方面有一些区别。需要注意的是,git switch 是在 Git 2.23 版本引入的,它提供了一种更直观的分支切换方式。 git checkout: 分支切换: 在 Git 2.…

初学数据结构:Java对象的比较

目录 1. PriorityQueue中插入对象2. 元素的比较2.1 基本类型的比较2.2 对象比较的问题 3. 对象的比较3.1 基于Comparable接口类的比较3.2 基于比较器比较3.3 三种方式对比 4. 集合框架中PriorityQueue的比较方式5. 使用PriorityQueue创建大小堆,解决TOPK问题 【本节…

PyTorch 中的nn.Conv2d 类

nn.Conv2d 是 PyTorch 中的一个类,代表二维卷积层(2D Convolution Layer)。这个类广泛用于构建卷积神经网络(CNN),特别是在处理图像数据时。 基本概念 卷积: 在神经网络的上下文中,卷积是一种特…

llamaindex 集成本地大模型

从​​​​​​​​​​​​​​用llamaindex 部署本地大模型 - 知乎Customizing LLMs within LlamaIndex Abstractions 目的:llamaindex 是一个很好的应用框架,基于此搭建一个RAG应用是一个不错的选择,但是由于llamaindex默认设置是openai的…

FlashInternImage实战:使用FlashInternImage实现图像分类任务(一)

文章目录 摘要安装包安装timm 数据增强Cutout和MixupEMA项目结构编译安装DCNv4环境安装过程配置CUDAHOME解决权限不够的问题 按装ninja编译DCNv4 计算mean和std生成数据集 摘要 https://arxiv.org/pdf/2401.06197.pdf 论文介绍了Deformable Convolution v4(DCNv4&…

【MQ02】基础简单消息队列应用

基础简单消息队列应用 在上一课中,我们已经学习到了什么是消息队列,有哪些消息队列,以及我们会用到哪个消息队列。今天,就直接进入主题,学习第一种,最简单,但也是最常用,最好用的消息…

百度百科词条编辑规则是什么?

百度百科词条编辑规则是指在百度百科平台上编辑和创建词条时需要遵循的一系列标准和指南。百度百科作为全球最大的中文百科全书,旨在为用户提供准确、全面、客观的知识信息。为了确保词条内容的质量,百度设定了严格的编辑规则。伯乐网络传媒来给大家分享…

用navigator.sendBeacon完成网页埋点异步请求记录用户行为,当网页关闭的时候,依然后完美完成接口请求,不会因为浏览器关闭了被中断请求。

代码用例 <template><div :class"$options.name"><el-button type"primary" click"sendBeacon">navigator.sendBeacon 请求埋点接口 发送json对象数据</el-button></div> </template><script> expor…

java web 职位推荐系系统Myeclipse开发mysql数据库协同过滤算法java编程计算机网页项目

一、源码特点 java Web职位推荐系统是一套完善的java web信息管理系统 &#xff0c;对理解JSP java编程开发语言有帮助&#xff0c;系统具有完整的源代码和数据库&#xff0c;系统主要采用B/S模式开发。开发环境为 TOMCAT7.0,Myeclipse8.5开发&#xff0c;数据库为Mysql5.0…

【小白教程】幻兽帕鲁服务器一键搭建 | 支持更新 | 自定义配置

幻兽帕鲁刚上线就百万在线人数&#xff0c;官方服务器的又经常不稳定&#xff0c;所以这里给大家带来最快捷的搭建教程&#xff0c;废话不多说直接开始。 步骤一&#xff1a;准备服务器 服务器建议 Linux 系统&#xff0c;资源占用低&#xff0c;而且一键脚本只需要一条命令&am…

安卓程序开发——搭建主页框架

一、实验目的 搭建项目框架掌握Android Activity组件使用和Intent机制&#xff0c;加强对Activity生命周期的理解&#xff0c;掌握Fragment的使用。 二、实验设备及器件 Android Studio 三、实验内容 1.创建一个Android应用&#xff0c;设置工程名MobileShop&#xff0c;包…

react的高阶函数HOC:

React 的高阶组件&#xff08;Higher-Order Component&#xff0c;HOC&#xff09;是一种用于复用组件逻辑的模式。它是一个函数&#xff0c;接收一个组件作为参数&#xff0c;并返回一个新的增强过的组件。 HOC 可以用于实现以下功能&#xff1a; 代码复用&#xff1a;通过将…

Android主流框架汇总

Android主流框架汇总 Android 百大框架 Android 常用开发框架 Android MVP 快速开发框架 Android 开源框架【集合】 AndroidFire 新闻阅读App框架 RxPermissions——Android 申请运行时权限 RxPermissions——Android 动态权限申请库 SuperTextView——绘制控件UI XPopup——An…

linux系统nginx工具接口压力测试工具和关联php页面

接口压力测试工具和nginx关联php ab接口压力测试工具工具下载与使用参数选项内容解释ab性能指标吞吐率&#xff08;Requests per second&#xff09;并发连接数&#xff08;The number of concurrent connections&#xff09;并发用户数&#xff08;Concurrency Level&#xff…

携程开源 基于真实请求与数据的流量回放测试平台、自动化接口测试平台AREX

携程开源 基于真实请求与数据的流量回放测试平台、自动化接口测试平台AREX 官网文档 基于真实请求与数据的流量回放测试平台、自动化接口测试平台AREX 这篇文章稍稍水一下&#xff0c;主要讲下部署过程里踩的坑&#xff0c;因为部署的过程主要是运维同学去处理了&#xff0c;我…

【Spring 篇】MyBatis DAO层实现:数据之舞的精灵

欢迎来到MyBatis DAO层的神奇世界&#xff0c;这里将为你揭示DAO层的奥秘&#xff0c;让你成为数据之舞的精灵。无论你是初学者还是想要深入了解DAO层的开发者&#xff0c;这篇博客将引导你踏入MyBatis DAO层的王国&#xff0c;一探其中的精彩。 舞台1&#xff1a;DAO层的角色…

人脸识别 FaceNet人脸识别(一种人脸识别与聚类的统一嵌入表示)

人脸识别 FaceNet人脸识别&#xff08;一种人脸识别与聚类的统一嵌入表示&#xff09; FaceNet的简介Facenet的实现思路训练部分 FaceNet的简介 Facenet的实现思路 import torch.nn as nndef conv_bn(inp, oup, stride 1):return nn.Sequential(nn.Conv2d(inp, oup, 3, stride…

FIND_IN_SET的使用:mysql表数据多角色、多用户查询

MySQL 函数 FIND_IN_SET 是用于在逗号分隔的字符串中查找特定值的函数。它的语法如下&#xff1a; FIND_IN_SET(search_value, comma_separated_string)search_value 是要查找的值。 comma_separated_string 是逗号分隔的字符串&#xff0c;在这个字符串中查找指定的值。FIND_…

Redis 面试题 | 14.精选Redis高频面试题

&#x1f90d; 前端开发工程师、技术日更博主、已过CET6 &#x1f368; 阿珊和她的猫_CSDN博客专家、23年度博客之星前端领域TOP1 &#x1f560; 牛客高级专题作者、打造专栏《前端面试必备》 、《2024面试高频手撕题》 &#x1f35a; 蓝桥云课签约作者、上架课程《Vue.js 和 E…

手机视频压缩怎么压缩?一键瘦身~

现在手机已经成为我们日常生活中必不可少的工具&#xff0c;而在手机的应用领域中&#xff0c;文件的传输和存储是一个非常重要的问题。很多用户都会遇到这样一个问题&#xff0c;那就是在手机上存储的文件太多太大&#xff0c;导致手机存储空间不足&#xff0c;那么怎么在手机…