MySQL中min和max查询优化

栏目: 数据库 · Mysql · 发布时间: 5年前

内容简介:MySQL max() 函数的需扫描where条件过滤后的所有行:在测试环境中重现:测试版本:Server version:        5.1.58-log MySQL Community Server (GPL)

MySQL max() 函数的需扫描where条件过滤后的所有行:

在测试环境中重现:

测试版本:Server version:        5.1.58-log MySQL Community Server (GPL)

testtable表中的索引

mysql> show index from testtable;

+-----------+------------+------------+--------------+-------------+-----------+-------------+----------+--------+------+------------+---------+

| Table    | Non_unique | Key_name  | Seq_in_index | Column_name | Collation | Cardinality | Sub_part | Packed | Null | Index_type | Comment |

+-----------+------------+------------+--------------+-------------+-----------+-------------+----------+--------+------+------------+---------+

| testtable |          0 | PRIMARY    |            1 | id          | A        |          2 |    NULL | NULL  |      | BTREE      |        |

| testtable |          1 | key_number |            1 | number      | A        |          2 |    NULL | NULL  | YES  | BTREE      |        |

+-----------+------------+------------+--------------+-------------+-----------+-------------+----------+--------+------+------------+---------+

对比的 sql 为:

select sql_no_cache  max(id) from testtable where number=98;

select sql_no_cache id from testtable where number=98 order by id desc limit 1;

查看执行计划:

mysql> explain select sql_no_cache  max(id) from testtable where number=98;

+----+-------------+-----------+------+---------------+------------+---------+-------+------+--------------------------+

| id | select_type | table    | type | possible_keys | key        | key_len | ref  | rows | Extra                    |

+----+-------------+-----------+------+---------------+------------+---------+-------+------+--------------------------+

|  1 | SIMPLE      | testtable | ref  | key_number    | key_number | 5      | const |    4 | Using where; Using index |

+----+-------------+-----------+------+---------------+------------+---------+-------+------+--------------------------+

1 row in set (0.00 sec)

mysql> explain select sql_no_cache id from testtable where number=98 order by id desc limit 1;

+----+-------------+-----------+------+---------------+------------+---------+-------+------+--------------------------+

| id | select_type | table    | type | possible_keys | key        | key_len | ref  | rows | Extra                    |

+----+-------------+-----------+------+---------------+------------+---------+-------+------+--------------------------+

|  1 | SIMPLE      | testtable | ref  | key_number    | key_number | 5      | const |    4 | Using where; Using index |

+----+-------------+-----------+------+---------------+------------+---------+-------+------+--------------------------+

1 row in set (0.00 sec)

执行计划显示完全一样。

其中,number为98 对应的记录有4行:

mysql> select count(*) from testtable where number=98;

+----------+

| count(*) |

+----------+

|        4 |

+----------+

1 row in set (0.00 sec)

执行前查看innodb_rows_read

#innodb_rows_read  从InnoDB表读取的行数

mysql> show global status like 'innodb_rows_read';

+------------------+-------+

| Variable_name    | Value |

+------------------+-------+

| Innodb_rows_read | 1022  |

+------------------+-------+

1 row in set (0.00 sec)

执行sql1

mysql> select sql_no_cache  max(id) from testtable where number=98;

+---------+

| max(id) |

+---------+

|      13 |

+---------+

1 row in set (0.00 sec)

执行后查看innodb_rows_read,发现innodb_rows_read增加了4,即number为98 对应的记录有4行

mysql> show global status like 'innodb_rows_read';

+------------------+-------+

| Variable_name    | Value |

+------------------+-------+

| Innodb_rows_read | 1026  |

+------------------+-------+

1 row in set (0.00 sec)

执行sql2

mysql> select sql_no_cache id from testtable where number=98 order by id desc limit 1;

+----+

| id |

+----+

| 13 |

+----+

1 row in set (0.00 sec)

执行后查看innodb_rows_read,发现innodb_rows_read增加了1

mysql> show global status like 'innodb_rows_read';

+------------------+-------+

| Variable_name    | Value |

+------------------+-------+

| Innodb_rows_read | 1027  |

+------------------+-------+

1 row in set (0.00 sec)

测试得出:

select sql_no_cache  max(id) from testtable where number=98;

需要读取 number=98 的所有行,才能得到最大的id

select sql_no_cache id from testtable where number=98 order by id desc limit 1;

由于id是主键,number是第二索引,只需扫描1行即可得到最大的id

请慎用max()函数,特别是频繁执行的sql,若需用到可转化为测试中的  order by id desc limit 1

因为往往min()或者max()函数往往会造成全表扫描

Linux公社的RSS地址https://www.linuxidc.com/rssFeed.aspx

本文永久更新链接地址: https://www.linuxidc.com/Linux/2018-12/156067.htm


以上所述就是小编给大家介绍的《MySQL中min和max查询优化》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

颠覆医疗

颠覆医疗

[美]埃里克·托普 / 张南、魏薇、何雨师 / 译言·东西文库/电子工业出版社 / 2014-1-20 / 55.00

“创造性破坏”是奥地利经济学家约瑟夫·熊彼特最著名的理论,当一个产业在革新之时,都需要大规模地淘汰旧的技术与生产体系,并建立起新的生产体系。电器之于火器、汽车之于马车、个人计算机之于照排系统,都是一次又一次的“创造性破坏”,旧的体系完全不复存在,新的体系随之取代。 “创造性破坏”已经深深地改变了我们的生活,在这个数字时代,我们身边的一切都被“数字化”了。只有一处,也许是由于其本身的根深蒂固,......一起来看看 《颠覆医疗》 这本书的介绍吧!

随机密码生成器
随机密码生成器

多种字符组合密码

HEX CMYK 转换工具
HEX CMYK 转换工具

HEX CMYK 互转工具