Implementation of MySQL joint index (composite index)

Implementation of MySQL joint index (composite index)

Joint Index

The definition of the joint index in this article is (MySQL):

ALTER TABLE `table_name` ADD INDEX (`col1`,`col2`,`col3`);

Advantages of joint indexes

If there is more than one SQL statement, two conditions are required.

SELECT * FROM `user_info` WHERE username='XX',password='XXXXXX';

When the index is searching the password field, the amount of data is greatly reduced, the index hit rate is reduced, and the efficiency of the index is increased.

The size of a matching index is smaller than that of a single index, and it is just an index tree, which saves more time and space complexity than a single column index.

The essence of joint index hits (understanding of the leftmost match)

definition

When creating a ( col1 , col2 , col3 ) joint index, it is equivalent to creating a ( col ) single-column index. For the ( clo1 , clo2 ) joint index and the ( col1 , col2 , col3 ) joint index to take effect, you can only use the three combinations of col1 and col1 , col2 and col1 , col2 , col3 ; of course, the combination of col1 and col3 is also possible, but in fact only the index of col1 is used, col3 is not used!

Diagram

Popular understanding

A joint index is like a phone book organized by姓氏——名字. You can only hit the index if you first determine the last name. The following statements can correctly hit the joint index (the fields directly in = and IN can be in random order, and the MySQL query optimizer can optimize it into an index-recognized form)

-- Only hit col1, col2
SELECT * FROM `table_name` WHERE `col1`='XX';
-- hit col1, col2. The order of col1 and col2 can be reversed SELECT * FROM `table_name` WHERE `clo1`='XX',`clo2`='XXX'; 
SELECT * FROM `table_name` WHERE `clo2`='XXX', `clo1`='XX';
-- hit col1,col2,col3. Similarly, the order of the three columns can be reversed. SELECT * FROM `table_name` WHERE `col1`='X',`col2`='XX',`col3`='XXX';
SELECT * FROM `table_name` WHERE `col1`='X',`col3`='XX',`col2`='XXX';
SELECT * FROM `table_name` WHERE `col2`='X',`col3`='XX',`col1`='XXX';

This is the end of this article about the implementation of MySQL joint index (compound index). For more relevant MySQL joint index content, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Summary of MySQL composite indexes
  • In-depth study of MySQL composite index
  • Optimize Mysql limit, reference the compound index of fast paging from one million to ten million and apply it to lightweight framework
  • Optimize Mysql limit, reference the compound index of fast paging from one million to ten million and apply it to lightweight framework
  • How does the composite index of MySQL take effect?

<<:  HTML tag ID can be a variable

>>:  Operations of communication between Docker containers and external network communication

Recommend

Ansible automated operation and maintenance deployment method for Linux system

Ansible is a new automated operation and maintena...

How to use nginx as a load balancer for mysql

Note: The nginx version must be 1.9 or above. Whe...

How to quickly modify the host attribute of a MySQL user

When you log in to MySQL remotely, the account yo...

Detailed explanation of JavaScript array deduplication

Table of contents 1. Array deduplication 2. Dedup...

Meta viewport makes the web page full screen display control on iPhone

In desperation, I suddenly thought, how is the Sin...

VM VirtualBox virtual machine mount shared folder

One environment Install VMware Tools on CentOS 7 ...

Specific usage of Vue's new toy VueUse

Table of contents Preface What is VueUse Easy to ...

Detailed explanation of the usage of MySQL data type DECIMAL

MySQL DECIMAL data type is used to store exact nu...

Two methods to disable form controls in HTML: readonly and disabled

In the process of making web pages, we often use f...

Things to note when writing self-closing XHTML tags

The img tag in XHTML should be written like this:...

How to install and configure WSL on Windows

What is WSL Quoting a passage from Baidu Encyclop...

How to query date and time in mysql

Preface: In project development, some business ta...

Three ways to copy MySQL tables (summary)

Copy table structure and its data The following s...