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?
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
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
3. TABLE columns The following results are included:
4. PARTITIONS column:
5. TYPE column The performance is listed as follows from highest to lowest:
6. Extra Column Contains additional information about how MySQL executes queries
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.
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
12. Filtered columns
3. Limitations of execution plan
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:
|
<<: Solution to the problem that VMware workstation pro cannot be opened due to win10 update
>>: A brief discussion on JS prototype and prototype chain
Flex layout is also called elastic layout. Any co...
Table of contents Horizontal bar chart Dynamicall...
Table of contents 1. Function Introduction 2. Key...
There is only one solution, that is to change the...
If the field storing the name uses the GBK charac...
nginx version 1.11.3 Using the following configur...
Table of contents Preface How to implement Vuex f...
During the Olympic Games, IE 8 Beta 2 will be rele...
Table of contents vue2.x Pre-concept: Routing hoo...
After installing Docker on the Linux server, Pull...
1. Record several methods of centering the box: 1...
Since my local MySQL version is relatively low, I...
1. The role of brackets 1.1 Square brackets [ ] W...
Detailed explanation of JDBC database link and re...
Recently, many students have asked me about web p...