mysql explain详解

标签: mysql explain | 发表时间:2015-04-19 22:39 | 作者:Eric
出处:http://www.javaranger.com

一.语法

explain  select …

例如: explain select * from user where name=’ranger’;

二.explain输出解释

mysql> explain select * from user where name=’ranger’\G
*************************** 1. row ***************************
id: 1
select_type: SIMPLE
table: user
type: const
possible_keys: uniq_name
key: uniq_name
key_len: 152
ref: const
rows: 1
Extra:
1 row in set (0.01 sec)

1.id

SELECT语句的ID编号,优先执行编号较大的查询,如果编号相同,则从上向下执行

例如:

mysql> explain select * from (select * from ( select * from share where id =11) a) b;
+—-+————-+————+——–+—————+———+———+——+——+——-+
| id | select_type | table | type | possible_keys | key | key_len | ref | rows | Extra |
+—-+————-+————+——–+—————+———+———+——+——+——-+
| 1 | PRIMARY | <derived2> | system | NULL | NULL | NULL | NULL | 1 | |
| 2 | DERIVED | <derived3> | system | NULL | NULL | NULL | NULL | 1 | |
| 3 | DERIVED | share | const | PRIMARY | PRIMARY | 4 | | 1 | |
+—-+————-+————+——–+—————+———+———+——+——+——-+

很显然这条SQL是从里向外的执行,就是从id=3 向上执行.

2. select_type

就是select类型,可以有以下几种

(1) SIMPLE

简单SELECT(一条没有UNION或子查询部分的SELECT语句) 例如:

mysql> explain select * from share where id =11;
+—-+————-+——-+——-+—————+———+———+——-+——+——-+
| id | select_type | table | type | possible_keys | key | key_len | ref | rows | Extra |
+—-+————-+——-+——-+—————+———+———+——-+——+——-+
| 1 | SIMPLE | share | const | PRIMARY | PRIMARY | 4 | const | 1 | |
+—-+————-+——-+——-+—————+———+———+——-+——+——-+

(2). PRIMARY

最外层或最左侧的SELECT语句.例如:

mysql> explain select * from ( select * from share where id =11) a;
+—-+————-+————+——–+—————+———+———+——+——+——-+
| id | select_type | table | type | possible_keys | key | key_len | ref | rows | Extra |
+—-+————-+————+——–+—————+———+———+——+——+——-+
| 1 | PRIMARY | <derived2> | system | NULL | NULL | NULL | NULL | 1 | |
| 2 | DERIVED | share | const | PRIMARY | PRIMARY | 4 | | 1 | |
+—-+————-+————+——–+—————+———+———+——+——+——-+

(3).UNION

UNION语句里的第二条或最后一条SELECT语句.例如

mysql> explain select * from share where id =11 union all select * from share;
+—-+————–+————+——-+—————+———+———+——-+——+——-+
| id | select_type | table | type | possible_keys | key | key_len | ref | rows | Extra |
+—-+————–+————+——-+—————+———+———+——-+——+——-+
| 1 | PRIMARY | share | const | PRIMARY | PRIMARY | 4 | const | 1 | |
| 2 | UNION | share | ALL | NULL | NULL | NULL | NULL | 2 | |
| NULL | UNION RESULT | <union1,2> | ALL | NULL | NULL | NULL | NULL | NULL | |
+—-+————–+————+——-+—————+———+———+——-+——+——-+

(4).DEPENDENT UNION

和UNION类型的含义相似,但需要依赖于某个外层查询

mysql> explain select * from t3 where id in (select id from t3 where id=3952602 union all select id from t3) ;
+—-+——————–+————+——–+——————-+———+———+——-+——+————————–+
| 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 | <union2,3> | ALL | NULL | NULL | NULL | NULL | NULL | |
+—-+——————–+————+——–+——————-+———+———+——-+——+————————–+

(4).UNION RESULT

一条UNION语句的结果。

mysql> explain select * from share where id =11 union all select * from share;
+—-+————–+————+——-+—————+———+———+——-+——+——-+
| id | select_type | table | type | possible_keys | key | key_len | ref | rows | Extra |
+—-+————–+————+——-+—————+———+———+——-+——+——-+
| 1 | PRIMARY | share | const | PRIMARY | PRIMARY | 4 | const | 1 | |
| 2 | UNION | share | ALL | NULL | NULL | NULL | NULL | 2 | |
| NULL | UNION RESULT | <union1,2> | ALL | NULL | NULL | NULL | NULL | NULL | |
+—-+————–+————+——-+—————+———+———+——-+——+——-+

(5).SUBQUERY

子查询中的第一个SELECT.

mysql> explain select * from share where id = (select id from share where id=11 ) ;

+—-+————-+——-+——-+—————+———+———+——-+——+————-+
| id | select_type | table | type | possible_keys | key | key_len | ref | rows | Extra |
+—-+————-+——-+——-+—————+———+———+——-+——+————-+
| 1 | PRIMARY | share | const | PRIMARY | PRIMARY | 4 | const | 1 | |
| 2 | SUBQUERY | share | const | PRIMARY | PRIMARY | 4 | | 1 | Using index |
+—-+————-+——-+——-+—————+———+———+——-+——+————-+

(6). DEPENDENT SUBQUERY

和SUBQUERY类型的含义相似,但需要依赖于某个外层查询

mysql> explain select id from share where id in (select id from share where id=11 ) ;

+—-+——————–+——-+——-+—————+——————+———+——-+——+————————–+
| id | select_type | table | type | possible_keys | key | key_len | ref | rows | Extra |
+—-+——————–+——-+——-+—————+——————+———+——-+——+————————–+
| 1 | PRIMARY | share | index | NULL | use_index_UNIQUE | 5 | NULL | 2 | Using where; Using index |
| 2 | DEPENDENT SUBQUERY | share | const | PRIMARY | PRIMARY | 4 | const | 1 | Using index |
+—-+——————–+——-+——-+—————+——————+———+——-+——+————————–+

(7).DERIVED

FROM子句里的子查询

mysql> explain select * from ( select * from share where id =11) a;
+—-+————-+————+——–+—————+———+———+——+——+——-+
| id | select_type | table | type | possible_keys | key | key_len | ref | rows | Extra |
+—-+————-+————+——–+—————+———+———+——+——+——-+
| 1 | PRIMARY | <derived2> | system | NULL | NULL | NULL | NULL | 1 | |
| 2 | DERIVED | share | const | PRIMARY | PRIMARY | 4 | | 1 | |
+—-+————-+————+——–+—————+———+———+——+——+——-+

3.table

各输出行里的信息是关于哪个数据表的
有时不是真实的表名字,看到的是derivedx(x是个数字,我的理解是第几步执行的结果)

mysql> explain select * from (select * from ( select * from share where id=11) a) b;

+—-+————-+————+——–+—————+———+———+——+——+——-+
| id | select_type | table | type | possible_keys | key | key_len | ref | rows | Extra |
+—-+————-+————+——–+—————+———+———+——+——+——-+
| 1 | PRIMARY | <derived2> | system | NULL | NULL | NULL | NULL | 1 | |
| 2 | DERIVED | <derived3> | system | NULL | NULL | NULL | NULL | 1 | |
| 3 | DERIVED | share | const | PRIMARY | PRIMARY | 4 | | 1 | |
+—-+————-+————+——–+—————+———+———+——+——+——-+

4.type

这列很重要,显示联接操作的类型,性能由好到差依次如下
system、const、eq_reg、ref、range、indexhe和ALL

(1).system

这是const联接类型的一个特例。表示表中仅有一行.如下(share表上的id是 primary key)

mysql> explain select * from (select * from share where id=11) a ;

+—-+————-+————+——–+—————+———+———+——+——+——-+
| id | select_type | table | type | possible_keys | key | key_len | ref | rows | Extra |
+—-+————-+————+——–+—————+———+———+——+——+——-+
| 1 | PRIMARY | <derived2> | system | NULL | NULL | NULL | NULL | 1 | |
| 2 | DERIVED | share | const | PRIMARY | PRIMARY | 4 | | 1 | |
+—-+————-+————+——–+—————+———+———+——+——+——-+

(2).const

单表中最多有一个匹配行,它将在查询开始时被读取。因为仅有一行,在这行的列值可被优化器剩余部分认为是常数。const表很快,因为它们只读取一次!

const用于用常数值比较PRIMARY KEY或UNIQUE索引的所有部分时。在下面的查询中,tbl_name可以用于const表:
SELECT * from tbl_name WHERE primary_key=1;
SELECT * from tbl_name WHERE primary_key_part1=1和 primary_key_part2=2;

例如:
mysql> explain select * from share where id=11;

+—-+————-+——-+——-+—————+———+———+——-+——+——-+
| id | select_type | table | type | possible_keys | key | key_len | ref | rows | Extra |
+—-+————-+——-+——-+—————+———+———+——-+——+——-+
| 1 | SIMPLE | share | const | PRIMARY | PRIMARY | 4 | const | 1 | |
+—-+————-+——-+——-+—————+———+———+——-+——+——-+

(3). eq_ref

联接查询中,对于前表的每一行,在此表中只查询一条记录,使用了PRIMARY或UNIQUE。这可能是最好的联接类型,除了const类型。它用在一个索引的所有部分被联接使用并且索引是UNIQUE或PRIMARY KEY。

eq_ref可以用于使用= 操作符比较的带索引的列。比较值可以为常量或一个使用在该表前面所读取的表的列的表达式。

在下面的例子中,MySQL可以使用eq_ref联接来处理ref_tables:

SELECT * FROM ref_table,other_table
WHERE ref_table.key_column=other_table.column;

SELECT * FROM ref_table,other_table
WHERE ref_table.key_column_part1=other_table.column
AND ref_table.key_column_part2=1;

例如
mysql> create unique index idx_t3_id on t3(id) ;
Query OK, 1000 rows affected (0.03 sec)
Records: 1000 Duplicates: 0 Warnings: 0

mysql> explain select * from share,share2 where share.id=share2.id;

+—-+————-+——–+——–+—————+———+———+—————-+——+——-+
| id | select_type | table | type | possible_keys | key | key_len | ref | rows | Extra |
+—-+————-+——–+——–+—————+———+———+—————-+——+——-+
| 1 | SIMPLE | share2 | ALL | PRIMARY | NULL | NULL | NULL | 1 | |
| 1 | SIMPLE | share | eq_ref | PRIMARY | PRIMARY | 4 | test.share2.id | 1 | |
+—-+————-+——–+——–+—————+———+———+—————-+——+——-+

(4).ref

对于每个来自于前面的表的行组合,所有有匹配索引值的行将从这张表中读取。如果联接只使用键的最左边的前缀,或如果键不是UNIQUE或PRIMARY KEY(换句话说,如果联接不能基于关键字选择单个行的话),则使用ref。如果使用的键仅仅匹配少量行,该联接类型是不错的。

ref可以用于使用=或<=>操作符的带索引的列。

在下面的例子中,MySQL可以使用ref联接来处理ref_tables:

SELECT * FROM ref_table WHERE key_column=expr;

SELECT * FROM ref_table,other_table
WHERE ref_table.key_column=other_table.column;

SELECT * FROM ref_table,other_table
WHERE ref_table.key_column_part1=other_table.column
AND ref_table.key_column_part2=1;

例如:

mysql> drop index idx_t3_id on t3;
Query OK, 1000 rows affected (0.03 sec)
Records: 1000 Duplicates: 0 Warnings: 0

mysql> create index idx_t3_id on t3(id) ;
Query OK, 1000 rows affected (0.04 sec)
Records: 1000 Duplicates: 0 Warnings: 0

mysql> explain select * from share,share2 where share.id=share2.id;
+—-+————-+——–+——–+—————+———+———+—————-+——+——-+
| id | select_type | table | type | possible_keys | key | key_len | ref | rows | Extra |
+—-+————-+——–+——–+—————+———+———+—————-+——+——-+
| 1 | SIMPLE | share2 | ALL | PRIMARY | NULL | NULL | NULL | 1 | |
| 1 | SIMPLE | share | eq_ref | PRIMARY | PRIMARY | 4 | test.share2.id | 1 | |
+—-+————-+——–+——–+—————+———+———+—————-+——+——

(5). ref_or_null

该联接类型如同ref,但是添加了MySQL可以专门搜索包含NULL值的行。在解决子查询中经常使用该联接类型的优化。

在下面的例子中,MySQL可以使用ref_or_null联接来处理ref_tables:

SELECT * FROM ref_table
WHERE key_column=expr OR key_column IS NULL;

(6). index_merge

该联接类型表示使用了索引合并优化方法。在这种情况下,key列包含了使用的索引的清单,key_len包含了使用的索引的最长的关键元素。

例如:
mysql> explain select * from share where id=11 or uniq=4 ;
+—-+————-+——-+————-+—————————-+—————————-+———+——+——+——————————————————+
| id | select_type | table | type | possible_keys | key | key_len | ref | rows | Extra |
+—-+————-+——-+————-+—————————-+—————————-+———+——+——+——————————————————+
| 1 | SIMPLE | t4 | index_merge | idx_t4_id,idx_t4_accountid | idx_t4_id,idx_t4_accountid | 4,4 | NULL | 2 | Using union(idx_t4_id,idx_t4_accountid); Using where |
+—-+————-+——-+————-+—————————-+—————————-+———+——+——+——————————————————+
1 row in set (0.00 sec)

(7). unique_subquery

该类型替换了下面形式的IN子查询的ref:

value IN (SELECT primary_key FROM single_table WHERE some_expr)
unique_subquery是一个索引查找函数,可以完全替换子查询,效率更高。

(8).index_subquery

该联接类型类似于unique_subquery。可以替换IN子查询,但只适合下列形式的子查询中的非唯一索引:

value IN (SELECT key_column FROM single_table WHERE some_expr)

(9).range

只检索给定范围的行,使用一个索引来选择行。key列显示使用了哪个索引。key_len包含所使用索引的最长关键元素。在该类型中ref列为NULL。

当使用=、<>、>、>=、<、<=、IS NULL、<=>、BETWEEN或者IN操作符,用常量比较关键字列时,可以使用range

mysql> explain select * from t3 where id=3952602 or id=3952603 ;
+—-+————-+——-+——-+——————-+———–+———+——+——+————-+
| id | select_type | table | type | possible_keys | key | key_len | ref | rows | Extra |
+—-+————-+——-+——-+——————-+———–+———+——+——+————-+
| 1 | SIMPLE | t3 | range | PRIMARY,idx_t3_id | idx_t3_id | 4 | NULL | 2 | Using where |
+—-+————-+——-+——-+——————-+———–+———+——+——+————-+
1 row in set (0.02 sec)

(10).index

扫描索引树(略比ALL快,因为索引文件通常比数据文件小)

当查询只使用作为单索引一部分的列时,MySQL可以使用该联接类型。

(11). ALL

前表的每一行数据都要跟此表匹配,全表扫描。如果表是第一个没标记const的表,这通常不好,并且通常在它情况下很差。通常可以增加更多的索引而不要使用ALL,使得行能基于前面的表中的常数值或列值被检索出。
5.possible_keys

MySQL认为在可能会用到的索引.NULL表示没有找到索引。在这种情况下,可以通过检查WHERE子句看是否它引用某些列或适合索引的列来提高你的查询性能。如果是这样,创造一个适当的索引并且再次用EXPLAIN检查查询

6. key

检索时,实际用到的索引名称.如果用了index_merge联接类型,此时会列出多个索引名称,NULL表示没有找到索引。要想强制MySQL使用或忽视possible_keys列中的索引,在查询中使用FORCE INDEX、USE INDEX或者IGNORE INDEX。

7.key_len

实际使用的索引的长度.如果是复合索引,那么只显示使用的最左前缀的大小
在不损失精确性的情况下,长度越短越好

8. ref

MySQL用来与索引值比较的值, 如果是单词const,则表示比较对象是一个常数.如果是某个数据列的名称,则表示比较操作是逐个数据列进行的.NULL表示没有使用索引

9. rows

MySQL为完成查询而需要在数据表里检查的行数的估算值.这个输出列里所有的值的乘积就是必须检查的数据行的各种可能组合的估算值

10. Extra

该列包含MySQL解决查询的详细信息,下面详细.

(4).Using filesort
需要将索引值写到文件中并且排序,这样按顺序检索相关数据行。看到这个的时候,查询就需要优化了。MYSQL需要进行额外的步骤来发现如何对返回的行排序。它根据连接类型以及存储排序键值和匹配条件的全部行的行指针来排序全部行

(5).Using index
MySQL可以不必检查数据文件, 只使用索引信息就能检索数据表信息

(6).Using temporary
在使用 GROUP BY 或 ORDER BY 时,需要创建临时表,保存中间结果集。看到这个的时候,查询需要优化了。这里,MYSQL需要创建一个临时表来存储结果,这通常发生在对不同的列集进行ORDER BY上,而不是GROUP BY上

(7).Using where
利用SELECT语句中的WHERE子句里的条件进行检索操作。如果不想返回表中的全部行,并且连接类型ALL或index,这就会发生,或者是查询有问题

相关 [mysql explain] 推荐:

mysql explain 解析

- - SQL - 编程语言 - ITeye博客
Mysql Explain 详解. 例如: explain select * from t3 where id=3952602;. 二.explain输出解释. | id | select_type | table | type  | possible_keys     | key     | key_len | ref   | rows | Extra |.

mysql explain详解

- - JavaRanger - 专注JAVA高性能程序开发、JVM、Mysql优化、算法
例如: explain select * from user where name=’ranger’;. 二.explain输出解释. SELECT语句的ID编号,优先执行编号较大的查询,如果编号相同,则从上向下执行. | id | select_type | table | type | possible_keys | key | key_len | ref | rows | Extra |.

MySQL优化之Explain

- - 数据库 - ITeye博客
Mysql Explain 详解. 例如: explain select * from t3 where id=3952602;. 二.explain输出解释. | id | select_type | table | type  | possible_keys     | key     | key_len | ref   | rows | Extra |.

MySQL explain执行计划详细解释

- - IT瘾-tuicool
例如: explain select * from t3 where id=3952602;. 二.explain输出解释. 我的理解是SQL执行的顺利的标识,SQL从大到小的执行. 很显然这条SQL是从里向外的执行,就是从id=3 向上执行.. 就是select类型,可以有以下几种. 简单SELECT(不使用UNION或子查询等) 例如:.

MySQL性能优化,MySQL索引优化,order by优化,explain优化

- - 掘金后端
今天我们来讲讲如何优化MySQL的性能,主要从索引方面优化. 下期文章讲讲 MySQL慢查询日志,我们是依据慢查询日志来判断哪条SQL语句有问题,然后在进行优化,敬请期待 MySQL慢查询日志篇.     name VARCHAR(24) NOT NULL DEFAULT "" COMMENT'姓名',.

利用 index、explain和profile优化mysql数据库查询小结

- - 博客园_首页
想必大家对index,explain和profile的利用也很多,这是我最近两天优化mysql语句查询资料整理的一些内容,希望大家可以一起来补充一下. 1.最好是在相同类型的字段间进行比较的操作. 在MySQL 3.23版之前,这甚至是一个必须的条件. 例如不能将一个建有索引的INT字段和BIGINT字段进行比较;但是作为特殊的情况,在CHAR类型的字段和VARCHAR类型字段的字段大小相同的时候,可以将它们进行比较.

转载--MySQL调优三步曲(慢查询、explain profile)

- - SQL - 编程语言 - ITeye博客
mysql profile explain slow_query_log分析优化查询. 在做性能测试中经常会遇到一些sql的问题,其实做性能测试这几年遇到问题最多还是数据库这块,要么就是IO高要么就是cpu高,所以对数据的优化在性能测试过程中占据着很重要的地方,下面我就介绍一些msyql性能调优过程中经常用到的三件利器:.

Oracle EXPLAIN PLAN用法

- - CSDN博客数据库推荐文章
1.SQL语句的执行计划. 使用EXPLAIN PLAN语句来确定Oracle数据库下指定SQL语句的执行计划,这个语句插入每一步执行计划的行描述到指定表中. 你也可使用EXPLAIN PLAN语句作为SQL跟踪工具的一部分. EXPLAIN PLAN命令的语法如下:. EXPLAIN PLAN的相关选下如下:.

Linux Ksplice,MySQL and Oracle

- Syn - DBA Notes
Oracle 在 7 月份收购了 Ksplice. 使用了 Ksplice 的 Linux 系统,为 Kernel 打补丁无需重启动,做系统维护的朋友应该明白这是一个杀手级特性. 现在该产品已经合并到 Oracle Linux 中. 目前已经有超过 700 家客户,超过 10 万套系统使用了 Ksplice (不知道国内是否已经有用户了.

MySQL Replication 线程

- - CSDN博客推荐文章
Replication 线程. Mysql 的Replication 是一个异步的复制过程,从一个Mysql instace(我们称之为Master)复制到另一个Mysql instance(我们称之Slave). 在Master 与Slave 之间的实现整个复制过程主. 要由三个线程来完成,其中两个线程(Sql 线程和IO 线程)在Slave 端,另外一个线程(IO 线程)在Master 端.