MySQL查询执行计划学习

SELECT_TYPE:


1)  SIMPLE:简单的SELECT,不实用UNION或者子查询
mysql> explain select * from t2;
+----+-------------+-------+------+---------------+------+---------+------+------+-------+
| id | select_type | table | type | possible_keys | key  | key_len | ref  | rows | Extra |
+----+-------------+-------+------+---------------+------+---------+------+------+-------+
|  1 | SIMPLE      | t2    | ALL  | NULL          | NULL | NULL    | NULL |  100 | NULL  |
+----+-------------+-------+------+---------------+------+---------+------+------+-------+
1 row in set (0.00 sec)

2)  PRIMARY:最外层SELECT。
mysql> explain select * from (select * from t2 where id2=2) b;
+----+-------------+------------+------+---------------+------+---------+------+------+-------------+
| id | select_type | table      | type | possible_keys | key  | key_len | ref  | rows | Extra       |
+----+-------------+------------+------+---------------+------+---------+------+------+-------------+
|  1 | PRIMARY     | <derived2> | ALL  | NULL          | NULL | NULL    | NULL |  100 | NULL        |
|  2 | DERIVED     | t2         | ALL  | NULL          | NULL | NULL    | NULL |  100 | Using where |
+----+-------------+------------+------+---------------+------+---------+------+------+-------------+
2 rows in set (0.00 sec)

3)  UNION:第二层,在SELECT之后使用了UNION。
mysql> explain select * from t1 union select * from t2;
+----+--------------+------------+------+---------------+------+---------+------+-------+-----------------+
| id | select_type  | table      | type | possible_keys | key  | key_len | ref  | rows  | Extra           |
+----+--------------+------------+------+---------------+------+---------+------+-------+-----------------+
|  1 | PRIMARY      | t1         | ALL  | NULL          | NULL | NULL    | NULL | 10208 | NULL            |
|  2 | UNION        | t2         | ALL  | NULL          | NULL | NULL    | NULL |   100 | NULL            |
| NULL | UNION RESULT | <union1,2> | ALL  | NULL          | NULL | NULL    | NULL |  NULL | Using temporary |
+----+--------------+------------+------+---------------+------+---------+------+-------+-----------------+
3 rows in set (0.00 sec)

4)  DEPENDENT UNION:UNION语句中的第二个SELECT,依赖于外部子查询。
mysql> explain select * from t1 where id1 in (select id2 from t2 where id2<10 union select id3 from t3 where id3<5);
+----+--------------------+------------+------+---------------+------+---------+------+-------+--------------------------+
| id | select_type        | table      | type | possible_keys | key  | key_len | ref  | rows  | Extra                    |
+----+--------------------+------------+------+---------------+------+---------+------+-------+--------------------------+
|  1 | PRIMARY            | t1         | ALL  | NULL          | NULL | NULL    | NULL | 10208 | Using where              |
|  2 | DEPENDENT SUBQUERY | t2         | ALL  | NULL          | NULL | NULL    | NULL |   100 | Using where              |
|  3 | DEPENDENT UNION    | t3         | ref  | id3           | id3  | 5       | func |     1 | Using where; Using index |
| NULL | UNION RESULT       | <union2,3> | ALL  | NULL          | NULL | NULL    | NULL |  NULL | Using temporary          |
+----+--------------------+------------+------+---------------+------+---------+------+-------+--------------------------+
4 rows in set (0.00 sec)

5)  UNION RESULT:UNION的结果。
mysql> explain select * from t1 union select * from t2;
+----+--------------+------------+------+---------------+------+---------+------+-------+-----------------+
| id | select_type  | table      | type | possible_keys | key  | key_len | ref  | rows  | Extra           |
+----+--------------+------------+------+---------------+------+---------+------+-------+-----------------+
|  1 | PRIMARY      | t1         | ALL  | NULL          | NULL | NULL    | NULL | 10208 | NULL            |
|  2 | UNION        | t2         | ALL  | NULL          | NULL | NULL    | NULL |   100 | NULL            |
| NULL | UNION RESULT | <union1,2> | ALL  | NULL          | NULL | NULL    | NULL |  NULL | Using temporary |
+----+--------------+------------+------+---------------+------+---------+------+-------+-----------------+
3 rows in set (0.00 sec)

6)  SUBQUERY:子查询中的第一个SELECT。
mysql> explain select * from t1 where id1=(select id2 from t2 where id2=2);
+----+-------------+-------+-------+---------------+---------+---------+-------+------+-------------+
| id | select_type | table | type  | possible_keys | key     | key_len | ref   | rows | Extra       |
+----+-------------+-------+-------+---------------+---------+---------+-------+------+-------------+
|  1 | PRIMARY     | t1    | const | PRIMARY       | PRIMARY | 4       | const |    1 | NULL        |
|  2 | SUBQUERY    | t2    | ALL   | NULL          | NULL    | NULL    | NULL  |  100 | Using where |
+----+-------------+-------+-------+---------------+---------+---------+-------+------+-------------+
2 rows in set (0.00 sec)

7)  DERIVED:被驱动的SELECT子查询
mysql> explain select * from (select * from t2 where id2=2) b;
+----+-------------+------------+------+---------------+------+---------+------+------+-------------+
| id | select_type | table      | type | possible_keys | key  | key_len | ref  | rows | Extra       |
+----+-------------+------------+------+---------------+------+---------+------+------+-------------+
|  1 | PRIMARY     | <derived2> | ALL  | NULL          | NULL | NULL    | NULL |  100 | NULL        |
|  2 | DERIVED     | t2         | ALL  | NULL          | NULL | NULL    | NULL |  100 | Using where |
+----+-------------+------------+------+---------------+------+---------+------+------+-------------+
2 rows in set (0.00 sec)



  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值