The explain command is the primary way to see how the query optimizer decided to execute a query. This feature has limitations and doesn't always tell the truth, but its output is the best information available and is worth the time to understand because you can learn how the query is executed. 1. What is MySQL execution plan To have a better understanding of the execution plan, you need to have a basic understanding of the basic structure of MySQL and the basic principles of query. The functional architecture of MySQL itself is divided into three parts: application layer, logic layer, and physical layer. Not only MySQL, but most other database products are divided according to this architecture. The application layer is mainly responsible for interacting with the client, establishing links, remembering link status, returning data, and responding to requests. This layer deals with the client. The logic layer is mainly responsible for query processing, transaction management and other database function processing, taking query as an example. After receiving the query SQL, the database will immediately assign a thread to process it. In the first step, the query processor will optimize the SQL query. After optimization, an execution plan will be generated and then handed over to the plan executor for execution. The plan executor needs to access the lower-level transaction manager and storage manager to operate data. Their respective division of labor is different. Ultimately, they obtain the query structure information by calling the files of the physical layer and respond the final results to the application layer. The physical layer refers to the files stored on the actual physical disk, mainly data files and log files.
From the above description, generating an execution plan is an essential step in executing a SQL statement. The performance of a SQL statement can be intuitively seen by viewing the execution plan. The execution plan provides various query types and levels, which we can view and use as a basis for performance analysis.
2. How to analyze the execution plan MySQL provides us with the explain keyword to intuitively view the execution plan of a SQL statement. explain shows how MySQL uses indexes to process select statements and join tables, which can help you choose better indexes and write more optimized query statements. Next we use explain to make a query as follows:
mysql> explain select * from payment;
+----+-------------+---------+------------+------+---------------+-----+---------+------+-------+----------+-------+
| id | select_type | table | partitions | type | possible_keys | key | key_len | ref | rows | filtered | Extra |
+----+-------------+---------+------------+------+---------------+-----+---------+------+-------+----------+-------+
| 1 | SIMPLE | payment | NULL | ALL | NULL | NULL | NULL | NULL | 16086 | 100.00 | NULL |
+----+-------------+---------+------------+------+---------------+-----+---------+------+-------+----------+-------+
1 row in set, 1 warning (0.01 sec) There are 12 columns in the query structure. Understanding the meaning of each column is crucial to understanding the execution plan. The following is an explanation in the form of a table. Column Name | illustrate |
---|
id | SELECT identifier, which is the query sequence number of the SELECT. | select_type | SELECT type, which can be any of the following: SIMPLE: Simple SELECT (without UNION or subquery) PRIMARY: the outermost SELECT UNION: The second or subsequent SELECT statement in a UNION DEPENDENT UNION: The second or subsequent SELECT statement in a UNION depends on the outer query UNION RESULT: The result of UNION SUBQUERY: The first SELECT in a subquery DEPENDENT SUBQUERY: The first SELECT in a subquery that depends on the outer query DERIVED: SELECT of the exported table (subquery in the FROM clause)
| table | The table referenced by the output row | partitions | If the query is against a partitioned table, displays the partitions that the query will access. | type | The type of join. Here are the various join types, ranked from best to worst: The system: table has only one row (= system table). This is a special case of the const join type. const: The table has at most one matching row, which will be read when the query starts. Because there is only one row, the column values in this row can be considered constants by the rest of the optimizer. const tables are fast because they are only read once! eq_ref: For each combination of rows from the previous table, read a row from this table. This is probably the best join type, except for const types. ref: For each combination of rows from the previous tables, all rows with matching index values will be read from this table. ref_or_null: This join type is like ref, but adds that MySQL can specifically search for rows containing NULL values. index_merge: This join type indicates that the index merge optimization method is used. unique_subquery: This type replaces the ref of the following form of IN subquery: value IN (SELECT primary_key FROM single_table WHERE some_expr) unique_subquery is an index search function that can completely replace the subquery and is more efficient. index_subquery: This join type is similar to unique_subquery. Can replace IN subqueries, but only for non-unique indexes in subqueries of the following form: value IN (SELECT key_column FROM single_table WHERE some_expr) range: retrieve only the rows in a given range, using an index to select the rows. index: This join type is the same as ALL, except that only the index tree is scanned. This is usually faster than ALL because index files are usually smaller than data files. ALL: For each combination of rows from the previous table, a full table scan is performed, indicating that the query needs to be optimized.
Generally speaking, you need to ensure that the query reaches at least the range level, preferably the ref level. | possible_keys | Indicates which index MySQL can use to find rows in this table | key | Shows the keys (indexes) that MySQL actually decided to use. If no index is selected, key is NULL. | key_len | Displays the key length that MySQL decided to use. If key is NULL, length is NULL. The shorter the length, the better without losing accuracy. | ref | Shows which column or constant is used together with key to select rows from the table. | rows | Displays the number of rows MySQL thinks it must examine to execute the query. Multiplying the data across multiple rows can estimate the number of rows to process. | Filter by | Shows an estimate of the percentage of rows filtered by the condition. | Extra | This column contains detailed information about how MySQL solved the query. Distinct: After MySQL finds the first matching row, it stops searching for more rows for the current row combination. Select tables optimized away MySQL returns data without traversing the table or index at all, indicating that it has been optimized to the point where it cannot be optimized any further. Not exists: MySQL can perform LEFT JOIN optimization on the query. After finding a row that matches the LEFT JOIN criteria, it will no longer check more rows in the table for the previous row combination. range checked for each record (index map: #): MySQL did not find a good index to use, but found that if the column values from the previous table are known, perhaps a partial index can be used. Using filesort: MySQL needs an extra pass to figure out how to retrieve the rows in sorted order, which means the query needs to be optimized. Using index: Retrieve column information from a table using only the information in the index tree without further searching to read the actual rows. Using temporary: In order to solve the query, MySQL needs to create a temporary table to hold the results, which means that the query needs to be optimized. Using where: The WHERE clause is used to restrict which rows are matched to the next table or sent to the client. Using sort_union(...), Using union(...), Using intersect(...): These functions illustrate how to merge index scans for the index_merge join type. Using index for group-by: Similar to the Using index method for accessing a table, Using index for group-by means that MySQL has found an index that can be used to query all columns of a GROUP BY or DISTINCT query without having to search the hard disk to access the actual table.
|
Summarize The above is what I introduced to you about how to use explain to query the execution plan of SQL in MySql. I hope it will be helpful to you. If you have any questions, please leave me a message and I will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website! You may also be interested in:- Detailed explanation of MySQL execution plan
- Detailed Analysis of Explain Execution Plan in MySQL
- 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
- Introduction to MySQL execution plan
- MYSQL explain execution plan
- Learn MySQL execution plan
|