Joint IndexThe definition of the joint index in this article is (MySQL): ALTER TABLE `table_name` ADD INDEX (`col1`,`col2`,`col3`); Advantages of joint indexesIf 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 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 ( DiagramPopular understanding A joint index is like a phone book organized by -- 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:
|
<<: HTML tag ID can be a variable
>>: Operations of communication between Docker containers and external network communication
Preface In this article, we'll explore the ev...
MySQL Introduction to MySQL MySQL was originally ...
Preface Last week, a colleague asked me: "Br...
When using Maven to manage projects, how to uploa...
CSS3 can change the color of pictures. From now o...
This article records the installation and configu...
Table of contents need Workaround 1. Set tooltip ...
background When developing a feature similar to c...
When building a website, HTML language may seem un...
noscript definition and usage The noscript elemen...
Create a folder Directory structure: dabaots Init...
Table of contents 1. Basic Use 2. Working Princip...
When I first started, I found a lot of errors. In...
Install antd-mobile Global import npm install ant...
Table of contents 1. Create a new project 2. Add ...