数据库
首页 > 数据库> > mysql explain命令学习

mysql explain命令学习

作者:互联网

转自:https://www.cnblogs.com/xuanzhi201111/p/4175635.html

https://segmentfault.com/a/1190000018729502

1.例子

 

 EXPLAIN可以解释说明 SELECT, DELETE, INSERT, REPLACE, and UPDATE 等语句.

2.输出信息

 

 

 3.列介绍

3.1 select_type

 SIMPLE:简单SELECT(不使用UNION或子查询等)

3.2 type

连接使用了哪种类别,有无使用索引,常用的类型有:system, const, eq_ref, ref, range, index, ALL(从左到右,性能越来越差)。

 

其他列的含义以后用到时再详细了解。

 

标签:ref,explain,使用,命令,com,https,mysql,type,SELECT
来源: https://www.cnblogs.com/BlueBlueSea/p/16557987.html