There is often a lack of understanding of multi-column indexes. A common mistake is to set up independent indexes for many columns, or to use the wrong order for the index columns. We will discuss the issue of index column order in the next article. First, let’s look at the case of multiple independent indexes, taking the following table structure as an example: CREATE TABLE test ( c1 INT, c2 INT, c3 INT, KEY(c1), KEY(c2), KEY(c3), ); Using this index strategy is usually the result of some authoritative advice (such as adding indexes to the condition columns used in the WHERE condition). In fact, this is totally wrong, and I would give it 1 star at best. Indexing in this way is several orders of magnitude slower than truly optimized indexing. Sometimes when you can't design an index with more than three stars, it's better to focus on optimizing row order or creating covering indexes than to ignore the WHERE condition.
Creating separate indexes for many columns does not help MySQL improve performance in many cases. MySQL 5.0 and later can slightly optimize this design using an index merge strategy - this approach allows queries on tables with multi-column indexes to limit the use of indexes to locate the required rows.
Earlier MySQL versions could use only one index, so MySQL often performed a full table scan when there was no index assistance. For example, the film_actor table has an index on film_id and actor_id, but using both indexes in the WHERE condition is not a good choice: SELECT film_id, actor_id FROM film_actor WHERE actor_id = 1 OR film_id = 1; In earlier MySQL versions, this query results in a full table scan unless you join the two queries together as shown below. SELECT film_id, actor_id FROM film_actor WHERE actor_id = 1 UNION ALL SELECT film_id, actor_id FROM film_actor WHERE film_id = 1 AND actor_id <> 1; In MySQL 5.0 and later, the query will use both indexes and merge the final results. Three variants of the algorithm are required to implement this process:
The above is a bit confusing. In fact, it should be distributed using a single condition (in order to use the index) to find all the data, and then combine the data. Let's use EXPLAIN to check it out. EXPLAIN SELECT `film_id`,`actor_id` FROM `film_actor` WHERE `actor_id`=1 OR `film_id`=1 It can be seen that the query method is a full table scan, but Extra is used for optimization. MySQL uses this technique when processing complex queries, so you may see nested operations in Extra. This index merging strategy can sometimes work well, but more often should be considered an indication of poor index usage:
When you see index merges when using EXPLAIN analysis, you should check the query statement and table structure to see if it is the optimal approach. You can check this by disabling index merge using optimizer_switch. Change the index of film_actor to a joint index (delete the original two independent indexes film_id and actor_id) and see the effect. You can see that the full table query is avoided. ALTER TABLE film_actor ADD INDEX `sindex` (`film_id`,`actor_id`); The above is the details of the selection of MySQL independent index and joint index. For more information about MySQL independent index and joint index, please pay attention to other related articles on 123WORDPRESS.COM! You may also be interested in:
|
<<: Detailed explanation of CSS3 rotating cube problem
>>: Several popular website navigation directions in the future
Table of contents 1. Background of the problem: 2...
The Linux stream editor is a useful way to run sc...
When using vue to develop projects, the front end...
Table of contents 1. Environmental Preparation 1....
Table of contents need: Ideas: lesson: Share the ...
Nginx: PV, UV, independent IP Everyone who makes ...
The effect shows that two browsers simulate each ...
Table of contents MySQL multi-version concurrency...
Preface Vue (pronounced /vjuː/, similar to view) ...
1. Changes in MySQL's default storage engine ...
Table of contents Achieve results Implementation ...
Table of contents Summarize Sometimes we need to ...
There is a difference between src and href, and t...
Rendering pipeline with external css files In the...
Pitfalls encountered during project deployment Wh...