EXPLAIN ANALYZE

EXPLAIN ANALYZE 语句的工作方式类似于 EXPLAIN,主要区别在于前者实际上会执行语句。这样可以将查询计划中的估计值与执行时所遇到的实际值进行比较。如果估计值与实际值显著不同,那么应考虑在受影响的表上运行 ANALYZE TABLE

语法图

ExplainSym:

ExplainSym

ExplainStmt:

ExplainStmt

ExplainableStmt:

ExplainableStmt

示例

  1. CREATE TABLE t1 (id INT NOT NULL PRIMARY KEY AUTO_INCREMENT, c1 INT NOT NULL);
  1. Query OK, 0 rows affected (0.12 sec)
  1. INSERT INTO t1 (c1) VALUES (1), (2), (3);
  1. Query OK, 3 rows affected (0.02 sec)
  2. Records: 3 Duplicates: 0 Warnings: 0
  1. EXPLAIN ANALYZE SELECT * FROM t1 WHERE id = 1;
  1. +-------------+-------+------+--------------------+---------------------------+
  2. | id | count | task | operator info | execution info |
  3. +-------------+-------+------+--------------------+---------------------------+
  4. | Point_Get_1 | 1.00 | root | table:t1, handle:1 | time:0ns, loops:0, rows:0 |
  5. +-------------+-------+------+--------------------+---------------------------+
  6. 1 row in set (0.01 sec)
  1. EXPLAIN ANALYZE SELECT * FROM t1;
  1. +-------------------+----------+------+-------------------------------------------------------------+----------------------------------+
  2. | id | count | task | operator info | execution info |
  3. +-------------------+----------+------+-------------------------------------------------------------+----------------------------------+
  4. | TableReader_5 | 10000.00 | root | data:TableScan_4 | time:931.759µs, loops:2, rows:3 |
  5. | └─TableScan_4 | 10000.00 | cop | table:t1, range:[-inf,+inf], keep order:false, stats:pseudo | time:0s, loops:0, rows:3 |
  6. +-------------------+----------+------+-------------------------------------------------------------+----------------------------------+
  7. 2 rows in set (0.00 sec)

MySQL 兼容性

该语句是 TiDB 对 MySQL 语法的扩展。

另请参阅