The leftmost matching principle of MySQL database index

The leftmost matching principle of MySQL database index

1. Joint index description

Create a joint index of three fields

The joint index (a,b,c) is equivalent to creating the index: (a), (a,b), (a,b,c)

2. Can ac use indexes?

先給出結論:a可以命中聯合索引(a,b,c),c無法命中,所以ac組合無法命中聯合索引。

1. Create an abc joint index (province, city, district)

insert image description here

ac index query

SELECT * FROM user_address WHERE province = 'Guangdong' 
AND district = 'Nanxiong City'

insert image description here

Display query range is ALL

2. Create a joint index for the two fields ac directly

insert image description here

SELECT * FROM user_address WHERE province = 'Guangdong' 
AND district = 'Nanxiong City'

insert image description here

The query result is that ref uses the index, and the number of rows scanned has also changed from 21 to 13.

3.ab index query
insert image description here

The query scope is ref

in conclusion

abc joint index, c in ac cannot hit the joint index of these three fields, but a can hit it, so the possible_keys column will show that the joint index is used.

3. Thinking

abc index, will acb follow the index?

  • According to the leftmost prefix matching principle, MySQL will keep matching to the right until it encounters a range query (>, <, between, like) and stops matching.
  • For example, if a=3 and b=4 and c>5 and d=6, if you create an index in the order of (a, b, c, d), d will not be used. If you create an index in the order of (a, b, d, c), all of them can be used, and the order of a, b, d can be adjusted arbitrarily.
  • = and in can be in any order, for example, a=1 and b=2 and c=3. The (a, b, c) index can be created in any order. The MySQL query optimizer will help you optimize it into a form that the index can recognize.

4. The cause of the leftmost matching principle

  • Because the joint index, such as abc, can be understood as ordered and the basis of its formation is built on a, from a to build b, and from b to build c, so it must be in order
  • It can be simply understood as: first sort a and create an index, then sort b based on a, and then sort c.
  • Therefore, when a joint index encounters a range query, the subsequent indexes will become invalid.

This is the end of this article about the leftmost matching principle of MySQL database index. For more relevant MySQL index leftmost matching content, please search 123WORDPRESS.COM's previous articles or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Detailed explanation of MySQL database indexes and failure scenarios
  • Detailed introduction to MySQL database index
  • Detailed explanation of MySQL database index
  • MySQL Database Indexes and Transactions
  • MySQL database index order by sorting detailed explanation
  • Disadvantages and reasonable use of MySQL database index
  • Detailed explanation of transactions and indexes in MySQL database
  • Mysql database index interview questions (basic programmer skills)
  • Why does the index in the Mysql database table not improve the query speed?

<<:  Detailed explanation of vuex persistence in practical application of vue

>>:  A detailed introduction to Linux system operation levels

Recommend

Solution to find all child rows for a given parent row in MySQL

Preface Note: The test database version is MySQL ...

Solution to forgetting the root password of MySQL 5.7 and 8.0 database

Note: To crack the root password in MySQL5.7, you...

How to run Spring Boot application in Docker

In the past few days, I have studied how to run s...

JavaScript Canvas draws dynamic wireframe effect

This article shares the specific code of JavaScri...

Detailed explanation of js's event loop event queue in the browser

Table of contents Preface Understanding a stack a...

docker logs - view the implementation of docker container logs

You can view the container logs through the docke...

How to implement Ajax concurrent request control based on JS

Table of contents Preface Ajax serial and paralle...

Steps to build a file server using Apache under Linux

1. About the file server In a project, if you wan...

Things You Don’t Know About the CSS ::before and ::after Pseudo-Elements

CSS has two pseudo-classes that are not commonly ...

Tic-Tac-toe game implemented in pure CSS3

Operation effect: html <div class="tic-ta...

Mysql database master-slave separation example code

introduce Setting up read-write separation for th...

How to create, start, and stop a Docker container

1. A container is an independently running applic...

Basic commands for MySQL database operations

1. Create a database: create data data _name; Two...