A common suggestion is to create indexes for WHERE conditions, but this is actually one-sided. Indexes should be designed for all queries, not just the WHERE conditions. Indexes do help find rows of data efficiently, but MySQL can also use indexes to retrieve column data without having to read a row of data at all. After all, the leaf nodes of an index contain the value corresponding to the index. Why read the rows when you can just read the index to get the data you want? When an index contains all the data for a query, it is called a covering index. Covering indexes can be a very powerful tool and can significantly improve performance. Consider the case where you don't need to read the data but only need to read the index:
In all cases, the most typical is that the cost of a query involving only indexed columns is much lower than that of looking up the data rows. It is important to note that a clustered index is not just any type of index. A clustered index must store the values corresponding to the indexed data columns. Hash, spatial, and full-text indexes do not store these values, so MySQL can only use binary trees to cover the query. Moreover, different storage engines implement covering indexes in different ways, and not all storage engines support covering indexes (for example, the Memory storage engine currently does not support it). When you verify that the index in the query uses a covering index, you will see "Using index" in the Extra column when using the Explain statement. For example, there is a multi-column index on the store_goods table: (shop_id, goods_category_id1). MySQL can use the index when the query returns data for only these two columns: EXPLAIN SELECT `goods_category_id1`,`shop_id` FROM `store_goods` WHERE 1 Covering index queries can invalidate such optimizations in some cases. The MySQL query optimizer determines whether the index covers the query when executing the query. Suppose that the index covers the WHERE condition but does not cover the entire query. If the evaluation results in a decision not to use a covering index, MySQL 5.5 and earlier versions will directly fetch the data rows, even if the data is not needed, and then filter them out. Let's look at why this happens and then how to rewrite the query to fix this problem. First the query is this: EXPLAIN SELECT * FROM products WHERE actor='SEAN CARREY' AND title like '%APOLLO%' The result at this time is that the covering index will not be used, but the ordinary index, because:
There is a way to do this using a clever combination of indexes and rewriting the query. We can expand the index to (artist, title, prod_id) and rewrite the query as follows: EXPLAIN SELECT * FROM products JOIN ( SELECT prod_id FROM products WHERE actor='SEAN CARREY' AND TITLE LIKE '%APOLLO%' ) AS t1 ON (t1.prod_id=products.prod_id) We call this a "deferred join" because it delays access to the columns. In the first phase of the query, when it finds matching rows in the subquery, MySQL uses the covering index. Although it is not covered in the entire query, it is better than nothing. The effectiveness of this optimization depends on how many rows of data are found in the WHERE condition. Assume that the products table contains millions of rows of data. You can compare the performance of these two queries, with a total of 1 million rows of data.
The comparison results are shown in the following table.
The results are explained as follows:
In most storage engines, an index can only cover access to columns that are part of the index. However, InnoDB actually does a further optimization. Think of InnoDB's secondary indexes storing the primary key values in the leaf nodes. This means that InnoDB's secondary indexes actually have additional columns that help InnoDB use covering indexes. For example, the sakila.actor table uses InnoDB and has an index on last_name, so this index can cover queries based on the primary key actor_id - even though this column is not part of the index. EXPLAIN SELECT actor_id, last_name FROM sakila.actor WHERE last_name = 'HOPPER' The above is the detailed content of the advantages of MySQL covering index. For more information about MySQL covering index, please pay attention to other related articles on 123WORDPRESS.COM! You may also be interested in:
|
<<: Teach you how to make cool barcode effects
>>: How to use border-image to implement text bubble border sample code
This article uses examples to illustrate the comm...
Table of contents 1. Monitoring port Relationship...
The meaning of key_len In MySQL, you can use expl...
Like means "like" in Chinese, but when ...
1. Get the real path of the current script: #!/bi...
Let me first introduce to you that the node proce...
Any number of statements can be encapsulated thro...
Table of contents Standard execution process opti...
I wrote a test program before, in which adding and...
When using vue to develop projects, the front end...
Solution to the problem that there is no unzip co...
Preview: Code: Page Sections: <template> &l...
docker-compose.yml version: '2' services:...
There are various environmental and configuration...
Table of contents Preface Rationale Procedure 1. ...