MySQL Explain详解(三)

日期: 2008-08-18 作者:yxyup 来源:TechTarget中国 英文


   (7). DEPENDENT SUBQUERY


  子查询中的第一个select,取决于外面的查询。






mysql> explain select id from t3 where id in (select id from t3 where id=3952602 ) ; 
  +—-+——————–+——-+——-+——————-+———+———+——-+——+————————–+ 
  | id | select_type | table | type | possible_keys | key | key_len | ref | rows | Extra | 
  +—-+——————–+——-+——-+——————-+———+———+——-+——+————————–+ 
  | 1 | PRIMARY | t3 | index | NULL | PRIMARY | 4 | NULL | 1000 | Using where; Using index | 
  | 2 | DEPENDENT SUBQUERY | t3 | const | PRIMARY,idx_t3_id | PRIMARY | 4 | const | 1 | Using index | 
  +—-+——————–+——-+——-+——————-+———+———+——-+——+————————–+ 
  (8).DERIVED


  派生表的select(FROM子句的子查询) 







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

  3.table


  显示这一行的数据是关于哪张表的.


  有时不是真实的表名字,看到的是derivedx(x是个数字,我的理解是第几步执行的结果) 







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

  4.type


  这列很重要,显示了连接使用了哪种类别,有无使用索引.


  从最好到最差的连接类型为const、eq_reg、ref、range、indexhe和ALL


  (1).system


  这是const联接类型的一个特例。表仅有一行满足条件.如下(t3表上的id是 primary key)







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

我们一直都在努力坚持原创.......请不要一声不吭,就悄悄拿走。

我原创,你原创,我们的内容世界才会更加精彩!

【所有原创内容版权均属TechTarget,欢迎大家转发分享。但未经授权,严禁任何媒体(平面媒体、网络媒体、自媒体等)以及微信公众号复制、转载、摘编或以其他方式进行使用。】

微信公众号

TechTarget微信公众号二维码

TechTarget

官方微博

TechTarget中国官方微博二维码

TechTarget中国

电子邮件地址不会被公开。 必填项已用*标注

敬请读者发表评论,本站保留删除与本文无关和不雅评论的权力。

作者

yxyup
yxyup

相关推荐