In-depth analysis of MySQL execution plans

In-depth analysis of MySQL execution plans

Preface

In the previous interview process, when asked about the execution plan, many people didn’t know what it was. Some even thought that the execution plan and execution time were the same concept. Today, let's take a look at what an execution plan is and what are its uses?

What is an execution plan?

To put it simply, the execution plan is the performance of SQL when it is executed in the database. It is usually used in scenarios such as SQL performance analysis and optimization.

1. What can the execution plan tell us?

  • How SQL uses indexes
  • Execution order of join queries
  • Query scanned data function

2. Contents of the Implementation Plan


The output of the SQL execution plan may be multiple lines, each line represents an operation on a database object

1. ID column

  • If the data in the ID column is a set of numbers, it indicates the order in which the SELECT statements are executed; if it is NULL, it means that this row of data is the result set generated by the UNION operation of two other SQL statements.
  • If the ID values ​​are the same, it means that the SQL execution order is from top to bottom as shown.
  • When the ID values ​​are different, the larger the ID value, the higher the priority, and the earlier it will be executed.

Demo


You can see that the execution plan above returns 3 rows of results. The value of the id column can be regarded as the sequence number of the SELECT operation in SQL.

Since there is only one SELECT in the above SQL, all ids are 1. Therefore, we need to read the execution plan from top to bottom.

According to our SQL statement, we think the execution order is a, b, c, but from the above figure, we can see that Mysql does not complete the table association operation in the order written in SQL.

The execution order of the tables is a, c, b. This is because the MySQL optimizer will adjust the actual order of table associations based on the statistical information of the indexes in the table.

2. SELECT_TYPE column

value meaning
SIMPLE Queries that do not contain subqueries or UNION operations
PRIMARY If a query contains any subqueries, the outermost query is marked as PRIMARY
SUBQUERY Subqueries in the SELECT list
DEPENDENT SUBQUERY Subqueries that depend on outer results
UNION The value of the second or subsequent query of the Union operation is union
DEPENDENT UNION When UNION is used as a subquery, the select_type value of the second or subsequent query
UNION RESULT The result set produced by UNION
DERIVED Subqueries that appear in the FROM clause

3. TABLE columns

The following results are included:

Output the name of the table where the data row is located. If the table has an alias, the alias is displayed.
<union M,N>: The result set generated by querying the union with ID M and N
<derived N>/<subquery N> : results generated by the query with ID N

4. PARTITIONS column:

Query which partition the matching records come from. For partitioned tables, display the partition ID of the query.
For non-partitioned tables, this is NULL.

5. TYPE column

The performance is listed as follows from highest to lowest:

value meaning
system This is a special case of the const join type and is used when the table being queried has only one row.
const Used when there is only one matching row in the table, such as a query on a primary key or a unique index. This is the most efficient join method.
eq_ref Unique index or primary key index query, corresponding to each index key, there is only one record matching it in the table
ref Non-unique index lookup, returning all rows matching a single value
ref_or_null Similar to the query of ref type, but with the addition of query for NULL value columns
index_merge This join type indicates that the index merge optimization method is used.
range Index range scan, commonly used in query conditions such as between, >, <
index FULL index Scan Full index scan, the difference from ALL is that it traverses the index tree
ALL FULL TABLE Scan Full table scan, which is the least efficient join method

6. Extra Column

Contains additional information about how MySQL executes queries

value meaning
Distinct Optimize the distinct operation to stop searching after finding the first matching element
Not exists Use not exists to optimize queries
Using filesort Sorting with additional operations, usually in order by or group by queries
Using index Using a covering index for querying
Using temporary MySQL needs to use temporary tables to process queries, which are common in sorting, subqueries, and grouping queries.
Using where You need to use WHERE conditions at the MySQL server level to filter data
select tables optimized away Obtaining data directly through the index without accessing the table is usually the most efficient

7. POSSIBLE_KEYS column

Indicates which indexes MySQL can use to optimize queries

Indexes on columns involved in the query will be listed, but they may not be used.

8. KEY column

The index actually used by the query optimizer to optimize the query

If there is no available index on the table, it will be displayed as NULL

If the query uses a covering index, the index appears only on the Key column.

9. KEY_LEN column

Displays the number of bytes used by the MySQL index. If there are three columns in a joint index and the total length of the three columns is 100 bytes, Key_len may be less than 100 bytes, such as 30 bytes. This means that not all columns of the joint index are used during the query, only the first one or two columns are used.

  • Indicates the maximum possible length of the index field
  • The length of Key_len is calculated from the field definition, not the actual length of the data

10. Ref Column

Indicates the columns or constants used by the current table when querying using the index in the Key column record

11. rows

  • Indicates the number of rows that MySQL estimates based on index statistics (for associated queries, it shows the number of rows required for each nested query)
  • The value of Rows is a statistical sampling result and is not very accurate.

12. Filtered columns

  • Indicates the percentage of rows returned to the number of rows to be read
  • The larger the value of the Filtered column, the better (the larger the value, the closer the number of rows actually read is to the number of rows required to be returned)
  • The value of the Filtered column depends on statistical information, so it is also not very accurate and is only a reference value.

3. Limitations of execution plan

  • Unable to show the impact of stored procedures, triggers, and UDFs on queries
  • Unable to use EXPLAIN to analyze stored procedures
  • Earlier versions of MySQL only supported parsing of SELECT statements.

Summarize

The above is the full content of this article. I hope that the content of this article will have certain reference learning value for your study or work. If you have any questions, you can leave a message to communicate. Thank you for your support for 123WORDPRESS.COM.

You may also be interested in:
  • Detailed explanation of MySQL execution plan
  • Detailed Analysis of Explain Execution Plan in MySQL
  • 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

<<:  Solution to the problem that VMware workstation pro cannot be opened due to win10 update

>>:  A brief discussion on JS prototype and prototype chain

Recommend

Detailed explanation of flex layout in CSS

Flex layout is also called elastic layout. Any co...

Echarts Bar horizontal bar chart example code

Table of contents Horizontal bar chart Dynamicall...

Detailed explanation of the solution to docker-compose being too slow

There is only one solution, that is to change the...

MySQL simple example of sorting Chinese characters by pinyin

If the field storing the name uses the GBK charac...

Solution to invalid Nginx cross-domain setting Access-Control-Allow-Origin

nginx version 1.11.3 Using the following configur...

How to use provide to implement state management in Vue3

Table of contents Preface How to implement Vuex f...

Is your website suitable for IE8?

During the Olympic Games, IE 8 Beta 2 will be rele...

Several ways to center a box in Web development

1. Record several methods of centering the box: 1...

Detailed tutorial on installing Docker on Windows

Since my local MySQL version is relatively low, I...

Detailed explanation of the role of brackets in AngularJS

1. The role of brackets 1.1 Square brackets [ ] W...

Detailed explanation of JDBC database link and related method encapsulation

Detailed explanation of JDBC database link and re...

UTF-8 and GB2312 web encoding

Recently, many students have asked me about web p...