开发者学堂课程【MySQL 高级应用 - 索引和锁:explain 之 rows 介绍】学习笔记,与课程紧密联系,让用户快速学习知识。
课程地址:https://developer.aliyun.com/learning/course/598/detail/8605
explain 之 rows 介绍
一.释义
刚刚的 ref 已经讲到我们的索引有没有被引用,被引用了哪一个,具体释义,传递给主人一个完整的介绍。
可以得出每张表啊有多少行被优化器查询。
id Iselect _ type Itable ItypeI possible _ keys Ikey key _ len I ref I rows IExtra
SIHPLE l ALL I PRIMARY l HULL IHULL IHULL 640
◇ Using uhere
SIHPLE I eq _ ref PRIMAR PRIHARY Ishared .t2.ID
2r0WS1n Set K0.00 sec )
mysq1> create index idx _co11_co12 on t2(co11,co12); Tuery 0K,1001 ros afFected (0.17 sec )
Records :1001Duplicates:
в Warnings :0
mysq1> explain select fron t1,t2 vhere t1.id=t2.id and t2.co11=' ac ';
1id Iselect _ type Itable ItypeI possible _ keys Ikey I key _ len I ref rOWS
SIHPLE IPRI
Н ARY , idx _co11_co12 Iidx _co11_co12I195 Iconst
SIHPLE PRIHARY I PRIHARY shared .t2.ID
rows in set
得出:
根据表统计信息及索引选用情况,大致估算出找到所需的记录所需要而读取的行数。