MySQL query optimization requires three steps: parsing, preprocessing, and optimization. During any of these processes, errors may occur. This article will not discuss error handling in depth, but will help you understand how MySQL executes queries so that you can write better queries. Parsers and preprocessorsInitially, MySQL's parser breaks the query into a series of instructions and builds a "parse tree" from them. The parser uses MySQL's SQL syntax to translate and validate query statements. For example, the parser ensures that the instructions in the query are valid and in the correct order, and checks for errors such as unmatched quotes in strings. The preprocessor checks the constructed parse tree for semantic information that the parser cannot handle. For example, the existence of tables and columns is checked, and field names and aliases are processed to ensure that column references are unambiguous. Next, the preprocessor checks permissions, which is usually pretty fast (unless your server has a bunch of permissions configured). Query OptimizerAfter passing through the parser and preprocessor, the parse tree is determined to be valid and can be processed by the optimizer and ultimately transformed into a query plan. There are often many ways to execute a query that produces the same result, and the optimizer's job is to find the best option. MySQL uses an optimizer based on cost estimation, which means that it tries to predict the cost of multiple execution plans and chooses the one with the lowest cost. The original unit cost was a random 4KB data page read, but now it has become more complex and includes the cost of performing WHERE comparison conditions. You can view the query optimizer's estimate of the cost of a query statement by displaying the Last_query_cost session variable. SELECT SQL_NO_CACHE COUNT(*) FROM sakila.film_actor; SHOW STATUS LIKE 'Last_query_cost'; The Last_query_cost displayed means that the optimizer estimates that it will need to perform the corresponding number of random data page accesses to complete the query. This is based on the following statistical estimates:
The optimizer does not take into account cache estimates - it assumes that the result is read from disk I/O every time. The optimizer may not always choose the best execution plan for the following reasons:
The MySQL query optimizer is a very complex part that uses many optimization methods to convert a query statement into a query execution plan. There are usually two types of optimization: static optimization and dynamic optimization. Static optimization can be performed simply by inspecting the parse tree. For example, the optimizer can convert the WHERE condition into an equation through mathematical operation rules. Static optimization is not related to specific values, such as constant values in WHERE conditions. They are executed once and remain valid even if the query is executed again with different values. It can be understood as "compile-time optimization". In contrast, dynamic optimization is context-specific and depends on a variety of factors. For example, the value in the WHERE condition or the corresponding number of data rows in the index. This process needs to be re-estimated for each query and can be understood as "runtime optimization". Here are some typical optimization methods for MySQL:
EXPLAIN SELECT film.film_id, film_actor.actor_id FROM sakila.film INNER JOIN sakila.film_actor USING(film_id) WHERE film.film_id = 1; MySQL will split this query into two steps, so the analysis result will have two rows. The first step is to find the corresponding data row in the film table. Because the query is based on the primary key film_id, MySQL knows that there is only one row of data. Therefore, the ref of the query analysis result at this time is a constant. In the second step, MySQL treats film_id as a known value, so the ref for the query on film_actor is also a constant. Other similar scenarios include when the constraint in the WHERE, USING, or ON condition is an equality. In this example, MySQL knows that the film_id in the USING condition is the same value in all queries, and this value must be the same as the film_id in the WHERE condition.
EXPLAIN SELECT film.film_id FROM sakila.film WHERE film_id=1; In the Extra field of the analysis results, you will see "Impossible WHERE noticed after reading const tables". There are other situations where early termination may occur, for example: SELECT film.film_id FROM sakila.film LEFT OUTER JOIN sakila.film_actor USING (film_id) WHERE sakila.film_actor.film_id IS NULL; This query excludes movies that have actors in them. Each movie may have multiple actors, but once an actor is found, MySQL stops processing the current movie and moves on to the next one. A similar situation occurs for DISTINCT and NOT EXISTS.
SELECT film.film_id FROM sakila.film INNER JOIN sakila.film_actor USING(film_id) WHERE film.film_id > 500; MySQL will know that the WHERE constraint applies not only to the film table, but also to the film_actor table. However, this optimization effect may not be achieved for other databases.
In fact, MySQL uses many more optimization methods than those listed above, and it is impossible to list them all here. Just remember the complexity of MySQL's optimizer and how smart it is. Therefore, the optimizer should be allowed to play its role instead of optimizing the query statement indefinitely until the MySQL optimizer has no room for improvement. Of course, although MySQL's optimizer is very smart, it does not necessarily give the best results. Sometimes you know the best result, but MySQL may not know it. In this case, you can optimize the query statement to help MySQL complete the optimization work, but sometimes you need to add query hints, or rewrite the query, modify the data table design or add indexes. The above is the details of understanding the MySQL query optimization process. For more information about MySQL query optimization, please pay attention to other related articles on 123WORDPRESS.COM! You may also be interested in:
|
<<: Implementation of Jenkins+Docker continuous integration
>>: Recommend 60 paging cases and good practices
1. When ffmpeg pushes video files, the encoding f...
Table of contents Preface Prepare Implementation ...
Table of contents Install CentOS7 Configuring Sta...
Preface Nginx 's built-in module supports lim...
Flash file formats: .FLV and .SWF There are two ex...
Table of contents 1. MHA 1. Concept 2. Compositio...
This article shares a draggable login box impleme...
This article uses examples to illustrate the comm...
question For a given MySQL connection, how can we...
Table of contents Forward Proxy nginx reverse pro...
1. Initialize data DROP TABLE IF EXISTS `test_01`...
Pull the image docker pull mysql View the complet...
Table of contents Tutorial Series 1. Introduction...
Using the clear property to clear floats is a comm...
Table of contents Find and fix table conflicts Up...