Detailed Analysis of Explain Execution Plan in MySQL

Detailed Analysis of Explain Execution Plan in MySQL

Preface

How to write efficient SQL statements is inseparable from the analysis of Explain execution plan. As for what is the execution plan and how to write efficient SQL, this article will introduce them one by one.

Execution plan

The execution plan is a query solution made by the database based on the SQL statement and the statistical information of related tables. This solution is automatically analyzed and generated by the query optimizer.

Using the explain keyword can simulate the optimizer to execute SQL query statements, so that you can understand how MySQL processes your SQL statements, analyze the performance bottlenecks of your select statements or table structures, let us know the reasons for the low efficiency of select, and thus improve our queries.

The result of explain is as follows:

The following is a detailed introduction to each column. The important ones are id, type, key, rows, and extra.

id

  • The number in the id column is the sequence number of the select, which can also be understood as the identifier of the SQL execution order. There are as many ids as there are selects.
    • Different id values: If it is a query only, the id number will increase, the larger the id value, the higher the priority, and the earlier it will be executed;
    • The id values ​​are the same: execute from top to bottom;
    • The id column is null: This means that this is a result set and there is no need to use it for querying.

select_type

The query type is mainly used to distinguish common queries, joint queries, subqueries and other complex queries;

simple: indicates that the query does not include union operations or subqueries. The select_type of the outermost query is simple, and there is only one;

 explain select * from t3 where id=3952602;

primary: requires a union operation or a select with subqueries. The select_type of the outermost query is primary, and there is only one;

explain select * from (select * from t3 where id=3952602) a ;

Derived: Subqueries that appear in the from list are also called derived tables; MySQL recursively executes these subqueries and places the results in a temporary table.

 explain select * from (select * from t3 where id=3952602) a ;

Subquery: Except for the subquery contained in the from clause, any subquery that appears elsewhere may be a subquery.

explain select * from t3 where id = (select id from t3 whereid=3952602 ) ;

union: If the second select appears after the union, it is marked as union; if the union is contained in a subquery in the from clause, the outer select will be marked as derived.

explain select * from t3 where id=3952602 union all select * from t3;

union result: The select that gets the result from the union table. Since it does not need to participate in the query, the id field is null.

 explain select * from t3 where id=3952602 union all select * from t3;

Dependent union: Like union, it appears in a union or union all statement, but this query is affected by the outer query;

Dependent subquery: Similar to dependent union, the first SELECT in the subquery is affected by the outer table query.

table

Indicates which table a row of explain is accessing.

  • If the query uses an alias, the alias is displayed here;
  • If no operation on the data table is involved, this is displayed as null;
  • If it is enclosed in angle brackets, it means that this is a temporary table, and the N behind it is the id in the execution plan, indicating that the result comes from this query;
  • If it is <union M,N> enclosed in angle brackets, it is similar to , and is also a temporary table, indicating that this result comes from the result set of the union query with id M,N.

type

The access type is how MySQL decides to find rows in the table.

From best to worst: system > const > eq_ref > ref > fulltext > ref_or_null > index_merge > unique_subquery > index_subquery > range > index > ALL. Except all, other types can use indexes. Except index_merge, other types can only use one index. Generally speaking, you need to ensure that the query reaches at least the range level, preferably the ref level.

  1. system: There is only one row of data in the table (equal to the system table). This is a special case of the const type and does not appear normally, so it can be ignored.
  2. const: Use a unique index or primary key, which means that it can be found by using the index once. const is used to compare primary keys or unique indexes. Since only one row of data needs to be matched, it is very fast. If you put the primary key in the where list, mysql will be able to convert the query into a const.
  3. eq_ref: Unique index scan, for each index key, there is only one row of data in the table that matches it. Common in primary key or unique index scans.
  4. ref: A nonunique index scan that returns all rows that match a single value. Essence is also an index.
  5. fulltext: full-text index retrieval. The full-text index has a high priority. If the full-text index and the ordinary index exist at the same time, MySQL will give priority to the full-text index regardless of the cost.
  6. ref_or_null: Similar to the ref method, but with the addition of a comparison for null values.
  7. index_merge: indicates that the query uses more than two indexes. It is an optimization method for index merging, and finally takes the intersection or union. Common and or conditions use different indexes.
  8. unique_subquery: used for in-form subqueries in where, the subquery returns unique values ​​without duplication;
  9. index_subquery: used for in-form subqueries that use auxiliary indexes or in constant lists. Subqueries may return duplicate values, and indexes can be used to deduplicate subqueries.
  10. range: Index range scan, commonly used in queries using operators such as >, <, between, in, and like.
  11. index: full table scan of the index, scanning the index tree from beginning to end;
  12. all: traverse the entire table to find matching rows (although both Index and ALL read the entire table, index reads from the index, while ALL reads from the hard disk)
  13. NULL: MySQL breaks down the statement during optimization and executes it without even accessing the table or index.

possible_keys

Shows the indexes that may be used by the query.

key

Shows which index the query actually used to optimize access to the table;

When select_type is index_merge, more than two indexes may appear here, and other select_types only one index may appear here.

key_len

  • The length of the index used to process the query, which indicates the number of bytes used in the index. This value can be used to determine which part of a multi-column index is actually used.
  • Note: The value displayed by key_len is the maximum possible length of the index field, not the actual length used. That is, key_len is calculated based on the table definition, not retrieved from the table. In addition, key_len only calculates the length of the index used in the where condition, and even if the index is used for sorting and grouping, it will not be calculated in key_len.

ref

Shows which field or constant is used with key.

  • If you are using a constant equal value query, const will be displayed here.
  • If it is a join query, the execution plan of the driven table will display the associated fields of the driving table.
  • If the condition uses an expression or function, or an internal implicit conversion occurs in the condition column, it may be displayed as func.

rows

Indicates that MySQL roughly estimates the number of rows that need to be read to find the required target record based on table statistics and index selection. It is not an exact value.

extra

Additional important information that doesn't fit in another column.

This column can display a lot of information, there are dozens of types, the commonly used ones are:

type illustrate
Using filesort MySQL has two ways to generate ordered results, through sorting operations or using indexes. When Using filesort appears in Extra, it means that MySQL uses the latter. But please note that although it is called filesort, it does not mean that files are used for sorting. Whenever possible, the sorting is done in memory. In most cases, it is faster to use index sorting, so it is generally necessary to consider optimizing the query at this time. Use files to complete the sorting operation, which may be the result of ordery by or group by statements. This may be a CPU-intensive process. Performance can be improved by selecting appropriate indexes and using indexes to sort the query results.
Using temporary Using temporary tables to save intermediate results is often used in GROUP BY and ORDER BY operations. Generally, seeing it indicates that the query needs to be optimized. Even if the use of temporary tables cannot be avoided, try to avoid the use of hard disk temporary tables.
Not exists MYSQL optimizes LEFT JOIN, once it finds a row that matches the LEFT JOIN criteria, it no longer searches.
Using index This indicates that the query covers the index and does not need to read the data file. Information can be obtained from the index tree (index file). If using where appears at the same time, it means that the index is used to perform index key value lookups. If there is no using where, it means that the index is used to read data rather than perform lookups. This is done by the MySQL service layer, but there is no need to go back to the table to query the records.
Using index condition This is a new feature in MySQL 5.6, called "index condition push". To put it simply, MySQL originally could not perform operations such as like on indexes, but now it can, which reduces unnecessary IO operations, but it can only be used on secondary indexes.
Using where The WHERE clause is used to restrict which rows will be matched to the next table or returned to the user. Note: The "Using where" in the Extra column indicates that the MySQL server will apply the WHERE condition filtering after returning the storage engine to the service layer.
Using join buffer Connection cache is used: Block Nested Loop, the connection algorithm is block nested loop connection; Batched Key Access, the connection algorithm is batch index connection
impossible where The value of the where clause is always false and cannot be used to retrieve any tuples.
select tables optimized away In the absence of a GROUP BY clause, when optimizing MIN/MAX operations based on indexes or optimizing COUNT(*) operations for the MyISAM storage engine, the optimization can be completed when the query execution plan is generated, without having to wait until the execution phase to perform the calculations.
distinct Optimize the distinct operation to stop looking for the same value after finding the first matching tuple

Filter by

  • This column appears when using explain extended. Versions after 5.7 have this field by default, so there is no need to use explain extended.
  • This field indicates the ratio of the number of records that satisfy the query after the data returned by the storage engine is filtered at the server level. Note that it is a percentage, not a specific number of records.

Limitations of MySQL execution plans

  1. EXPLAIN will not tell you about triggers, stored procedures, or the effects of user-defined functions on the query;
  2. EXPLAIN does not consider various caches;
  3. EXPLAIN does not show the optimization work done by MySQL when executing the query;
  4. Some statistics are estimates and not exact values;
  5. EXPALIN can only explain SELECT operations. Other operations must be rewritten as SELECT and then viewed.

Query Planning Case Study

Execution Order

  1. (id = 4): [select id, name from t2]: select_type is union, which means the select of id=4 is the second select in the union.
  2. (id = 3): [select id, name from t1 where address = '11']: Because it is a subquery included in the from statement, it is marked as DERIVED. Where address = '11' can be retrieved through the composite index idx_name_email_address, so type is index.
  3. (id = 2): [select id from t3]: Because it is a subquery included in the select, it is marked as SUBQUERY.
  4. (id = 1): [select d1.name, … d2 from … d1]: select_type is PRIMARY, indicating that the query is the outermost query, and the table column is marked as "derived3", indicating that the query results come from a derived table (the select result of id = 3).
  5. (id = NULL): [ … union … ]: represents the stage of reading rows from the temporary table of union. The “union 1, 4” in the table column indicates the union operation using the select results of id=1 and id=4.

Summarize

This is the end of this article about the in-depth exploration of MySQL Explain execution plan. For more relevant MySQL Explain execution plan content, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Detailed explanation of MySQL execution plan
  • In-depth analysis of MySQL execution plans
  • Detailed explanation of mysql execution plan id is empty (UNION keyword)
  • How to analyze SQL execution plan in MySQL through EXPLAIN
  • Detailed explanation of the execution plan explain command example in MySQL
  • How to use explain to query SQL execution plan in MySql
  • Introduction to MySQL execution plan
  • MYSQL explain execution plan
  • Learn MySQL execution plan

<<:  Detailed tutorial on deploying SpringBoot + Vue project to Linux server

>>:  Using js to achieve waterfall effect

Recommend

Detailed tutorial on installing harbor private warehouse using docker compose

Overview What is harbor? The English word means: ...

Significantly optimize the size of PNG images with CSS mask (recommended)

This article is welcome to be shared and aggregat...

In-depth understanding of javascript prototype and prototype chain

Table of contents 1. What is a prototype? 2. Prot...

The main differences between MySQL 4.1/5.0/5.1/5.5/5.6

Some command differences between versions: show i...

Summary of various methods of implementing article dividing line styles with CSS

This article summarizes various ways to implement...

JavaScript jigsaw puzzle game

This article example shares the specific code of ...

Issues with upgrading Python and installing Mongodb drivers under Centos

Check the Python version python -V If it is below...

Solution to Incorrect string value in MySQL

Many friends will report the following error when...

Linux kernel device driver kernel debugging technical notes collation

/****************** * Kernel debugging technology...

Detailed explanation of the use of CSS pointer-events attribute

In front-end development, we are in direct contac...

Introduction to installing JDK under Linux, including uninstalling OpenJDK

1. View openjdk rpm -qa|grep jdk 2. Delete openjd...

Solution for front-end browser font size less than 12px

Preface When I was working on a project recently,...