explain SQL语句性能检测

时间:2014-05-26 09:12:10   收藏:0   阅读:249

一般用来分析sql语句如何执行,使用了那些键

mysql>explain select * from table;
+----+-------------+-------+------+---------------+------+---------+------+------+-------+
| id | select_type | table | type | possible_keys | key  | key_len | ref  | rows | Extra |
+----+-------------+-------+------+---------------+------+---------+------+------+-------+


table          #显示该语句涉及的表
type           #反映语句的质量,优-->差:const > eq_reg > ref > range > indexhe > ALL
possible_keys
 
#存在表中的所有索引
key            #使用到的索引
key_len        #索引长度,越短越好
ref           
#显示索引的那一列被用到
rows           #语句返回的数据行数
extra          #语句查询情况的详细信息

explain SQL语句性能检测,布布扣,bubuko.com

评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!