4.2 explain 之 select_type
Posted 程序员果果
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了4.2 explain 之 select_type相关的知识,希望对你有一定的参考价值。
一、查询类型,主要用于区别 普通查询、联合查询、子查询等的复杂查询
二、常用常见的类型
1. simple : 简单的select查询,查询中不包含子查询或union 2. primary : 查询中若含有任何复杂查询的子部分,最外层查询则被标记 3. subquery : select或where列表中包含了子查询 4. derived : 在from列表中包含的子查询被标记为dreived(衍生)mysql会递归执行这些子查询,把结果放在临时表中 5. union : 若第二个select出现在 union之后,则会被标记union;若union包含在from子句查询中,外层select将会被标记为 : derived 6. union result : 从union表中获取结果的select
以上是关于4.2 explain 之 select_type的主要内容,如果未能解决你的问题,请参考以下文章
MySQL从入门到精通高级篇(二十四)EXPLAIN中select_type,partition,type,key,key_len字段的剖析