mysql查询优化相关技巧

php中文网
发布: 2016-06-07 16:18:47
原创
1158人浏览过

使用EXPLAIN语句检查优化器操作 +----+-------------+----------+-------+---------------+------+---------+------+------+----------------- | id | select_type | table | type | possible_keys | key | key_len| ref | rows | Extra +----+-------------

  使用explain语句检查优化器操作 +----+-------------+----------+-------+---------------+------+---------+------+------+----------------- | id | select_type | table | type | possible_keys | key | key_len| ref | rows | extra +----+-------------+----------+-------+---------------+------+---------+------+------+----------------- | 1 |simple | car_info | range | name | name | 768 | null | 9 | using where; using index | +----+-------------+----------+-------+---------------+------+---------+------+------+----------------

  EXPLAIN输出解释

  select_type 有如下几种类型: SIMPLE:未使用连接查询或者子查询的简单select语句 explain select * from car_info;

  PRIMARY:最外层的select语句 explain select * from (select name from car_info where name like '凯迪拉克%') as a;

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

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

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

  | 1 | PRIMARY | | ALL | NULL | NULL | NULL | NULL | 9 | |

  | 2 | DERIVED | car_info | range | name | name | 768 | NULL | 9 | Using where; Using index |

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

  UNION:union中的第二个,或后面的select语句 explain select name from car_info where id =100 union select name from web_car_brands where id =5; +------+--------------+----------------+-------+---------------+---------+---------+-------+------+-- | id | select_type | table | type | possible_keys | key | key_len | ref | rows | Extra | +------+--------------+----------------+-------+---------------+---------+---------+-------+------+--- | 1 | PRIMARY | car_info | const | PRIMARY | PRIMARY | 8 | const | 1 | | | 2 | UNION | web_car_brands | const | PRIMARY,id | PRIMARY | 4 | const | 1 | | | NULL | UNION RESULT |

  DEPENDENT UNION:union中的第二个或后面的色了传统语句,取决于外面的查询

  mysql> explain select * from t3 where id in (select id from t3 where id=3952602 union all select id from t3) ;

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

风车Ai翻译
风车Ai翻译

跨境电商必备AI翻译工具

风车Ai翻译 360
查看详情 风车Ai翻译

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

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

  | 1 | PRIMARY | t3 | ALL | NULL | NULL | NULL | NULL | 1000 | Using where

  | 2 | DEPENDENT SUBQUERY | t3 | const | PRIMARY,idx_t3_id | PRIMARY | 4 | const | 1 | Using index |

  | 3 | DEPENDENT UNION | t3 | eq_ref | PRIMARY,idx_t3_id | PRIMARY | 4 | func | 1 | Using where; Using index |

  |NULL | UNION RESULT |

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

  UNION RESULT:union的结果 explain select name from car_info where id =100 union select name from web_car_brands where id =5; +------+--------------+----------------+-------+---------------+---------+---------+-------+------+----- | id | select_type | table | type | possible_keys | key | key_len | ref | rows | Extra | +------+--------------+----------------+-------+---------------+---------+---------+-------+------+-- | 1 | PRIMARY | car_info | const | PRIMARY | PRIMARY | 8 | const | 1 | | | 2 | UNION | web_car_brands | const | PRIMARY,id | PRIMARY | 4 | const | 1 | | | NULL | UNION RESULT |

  SUBQUERY:子查询中的第一个SELECT语句 explain select name from car_info where id = (select id from web_car_series where id = 5); +----+-------------+----------------+-------+---------------+---------+---------+-------+------+----- | id | select_type | table | type | possible_keys | key | key_len | ref | rows | Extra | +----+-------------+----------------+-------+---------------+---------+---------+-------+------+------ | 1 | PRIMARY | car_info | const | PRIMARY | PRIMARY | 8 | const | 1 | | | 2 | SUBQUERY | web_car_series | const | PRIMARY | PRIMARY | 4 | | 1 | Using index | +----+-------------+----------------+-------+---------------+---------+---------+-------+------+-----

  DEPENDENT SUBQUERY:子查询中的第一个SELECT,取决于外面的查询

  explain select name from car_info where id in (select id from web_car_series where id = 5); +----+--------------------+----------------+-------+---------------+---------+---------+-------+------+- | id | select_type | table | type | possible_keys | key | key_len | ref | rows | Extra | +----+--------------------+----------------+-------+---------------+---------+---------+-------+------+ | 1 | PRIMARY | car_info | index | NULL | name | 768 | NULL | 145 | Using where; Using index | | 2 | DEPENDENT SUBQUERY | web_car_series | const | PRIMARY | PRIMARY | 4 | const | 1 | Using index | +----+--------------------+----------------+-------+---------------+---------+---------+-------+-----

  DERIVED:在from列表中包含子查询,mysql会递归的执行该子查询,并把结果放在临时表中

相关标签:
最佳 Windows 性能的顶级免费优化软件
最佳 Windows 性能的顶级免费优化软件

每个人都需要一台速度更快、更稳定的 PC。随着时间的推移,垃圾文件、旧注册表数据和不必要的后台进程会占用资源并降低性能。幸运的是,许多工具可以让 Windows 保持平稳运行。

下载
来源:php中文网
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
最新问题
开源免费商场系统广告
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责申明 举报中心 意见反馈 讲师合作 广告合作 最新更新 English
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送
PHP中文网APP
随时随地碎片化学习

Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号