当前位置:数据库 > > 正文

mysqlexplain各个字段作用(MySQL EXPLAIN语句的使用示例)

时间:2021-10-21 07:57:42类别:数据库

mysqlexplain各个字段作用

MySQL EXPLAIN语句的使用示例

在mysql优化的环节上,我们首先需要知道的就是我们当前的这句sql语句在实际的数据库中究竟是怎么执行的,才能谈要如何优化它。而在mysql中,就给我们提供了模拟语句执行的一个非常好用的关键字:explain。explain可以用来查看sql语句的执行效果,可以帮助选择更好的索引和优化查询语句,写出更好的优化语句。因此今天我们就来讲一讲这个关键字的一些基础的用法与应用。

一、使用方法

explain的使用方法非常简单:

  • ?
  • 1
  • mysql> explain select * from user;
  • 简单来说,就是在原有的sql语句前面加上explain关键字,或者说是在explain关键字后跟这你要检查的sql语句。

    二、输出结果

    explain语句的输出结果才是我们想要的数据,也是我们分析的重点。
    我们先来看看上面的语句所给到的对应的结果的形式:

  • ?
  • 1
  • 2
  • 3
  • 4
  • 5
  • +----+-------------+-------+------------+------+---------------+------+---------+------+------+----------+-------+
  • | id | select_type | table | partitions | type | possible_keys | key | key_len | ref | rows | filtered | extra |
  • +----+-------------+-------+------------+------+---------------+------+---------+------+------+----------+-------+
  • | 1 | simple  | user | null  | all | null   | null | null | null | 3 | 100.00 | null |
  • +----+-------------+-------+------------+------+---------------+------+---------+------+------+----------+-------+
  • explain语句给到我们的数据总共有10列,接下来我们看一下一些在性能优化上有比较重要作用的数据列所代表的意思。

    1.id

    这个是select查询的序列号。

    2.select_type

    当我们的sql语句是非select语句的时候(即delete,update...),这个字段的值就是对应的操作类型(delete,update...)。

  • ?
  • 1
  • mysql> explain insert into user vaules(2,'ahong','31');
  • 此时的输出select_type就是我们对应的insert:

  • ?
  • 1
  • 2
  • 3
  • 4
  • 5
  • +----+-------------+-------+------------+------+---------------+------+---------+------+------+----------+-------+
  • | id | select_type | table | partitions | type | possible_keys | key | key_len | ref | rows | filtered | extra |
  • +----+-------------+-------+------------+------+---------------+------+---------+------+------+----------+-------+
  • | 1 | insert  | user | null  | all | null   | null | null | null | null null | null |
  • +----+-------------+-------+------------+------+---------------+------+---------+------+------+----------+-------+
  • 而当sql语句时select语句的时候,他就是对应的一些详细的select的类型,可以有如下几种:

  • ?
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • simple:简单select(不使用union或子查询等)
  • primary:最外面的select
  • unionunion中的第二个或后面的select语句
  • dependent unionunion中的第二个或后面的select语句,取决于外面的查询
  • union result:union的结果。
  • subquery:子查询中的第一个select
  • dependent subquery:子查询中的第一个select,取决于外面的查询
  • derived:导出表的select(from子句的子查询)
  • 下面就是一个最简单的simple查询的例子:

  • ?
  • 1
  • mysql> explain select * from user;
  • ?
  • 1
  • 2
  • 3
  • 4
  • 5
  • +----+-------------+-------+------------+------+---------------+------+---------+------+------+----------+-------+
  • | id | select_type | table | partitions | type | possible_keys | key | key_len | ref | rows | filtered | extra |
  • +----+-------------+-------+------------+------+---------------+------+---------+------+------+----------+-------+
  • | 1 | simple  | user | null  | all | null   | null | null | null | 3 | 100.00 | null |
  • +----+-------------+-------+------------+------+---------------+------+---------+------+------+----------+-------+
  • 3.table

    显示这一步操作所访问的数据是关于哪一张表的。

    4.partitions

    显示表所使用的分区,如果要统计十年公司订单的金额,可以把数据分为十个区,每一年代表一个区。这样可以大大的提高查询效率。

    5.type

    这是最重要的一列。显示了连接使用了哪种类别,有无使用索引。是分析查询性能的关键。
    结果性能从优到差分别有以下的情况:

  • ?
  • 1
  • system > const > eq_ref > ref > fulltext > ref_or_null > index_merge > unique_subquery > index_subquery > range > index > all
  • 而这几种情况所代表的意义如下:

    一般来说,得保证查询至少达到range级别,最好能达到ref,否则就可能会出现性能问题。

    6.possible_key

    显示查询语句有可能会使用到的索引列。取值可能为一个,多个或者null。

    7.key

    key列显示的是该查询语句实际使用的索引列。如为null,则表示没有使用索引。
    展示一下possible_key和key的实际效果:
    下面是一个在age列上建立索引的数据表,我们进行以下的查询

  • ?
  • 1
  • mysql> explain select * from user where age = 1;
  • 会得到以下的结果:

  • ?
  • 1
  • 2
  • 3
  • 4
  • 5
  • +----+-------------+-------+------------+------+---------------+------+---------+-------+------+----------+-------+
  • | id | select_type | table | partitions | type | possible_keys | key | key_len | ref | rows | filtered | extra |
  • +----+-------------+-------+------------+------+---------------+------+---------+-------+------+----------+-------+
  • | 1 | simple  | user | null  | ref | age   | age | 5  | const | 1 | 100.00 | null |
  • +----+-------------+-------+------------+------+---------------+------+---------+-------+------+----------+-------+
  • 8.key_len

    显示的是当前的查询语句所使用的索引的长度。在不损失精确性的情况下,长度越短越好.

    9.ref

    引用到的上一个表的列。

    10.rows

    根据表的情况和查询语句的情况,mysql会估算出返回最终结果所必须检查的行的数量。该列的值越大查询效率越差。

    11.filtered

    一个百分比的值,和rows 列的值一起使用,可以估计出查询执行计划(qep)中的前一个表的结果集,从而确定join操作的循环次数。小表驱动大表,减轻连接的次数。

    12.extra

    关于mysql如何解析查询的额外信息,主要有以下几种:

    extra中包含的值:

    以上就是mysql explain语句的使用示例的详细内容,更多关于mysql explain语句的资料请关注开心学习网其它相关文章!

    原文链接:https://segmentfault.com/a/1190000038172353

    标签:
    上一篇下一篇

    猜您喜欢

    热门推荐