Detailed explanation of table return and index coverage examples in MySQL

Detailed explanation of table return and index coverage examples in MySQL

Index Type

Clustered index: Leaf nodes store row records, and each table must have at least one clustered index. Using a clustered index query will be very fast because you can directly locate the row record. Ordinary index: secondary index, index other than the clustered index, that is, non-clustered index. The leaf nodes of ordinary indexes store the values ​​of the primary key (clustered index).

Clustered index recursion rules:

  • If the table has a primary key, the primary key is the clustered index.
  • If the table does not have a primary key, the first NOT NULL and unique (UNIQUE) column is used as the clustered index by default.
  • If none of the above is specified, a hidden row_id will be created as a clustered index by default.

Index structure

id is the primary key, so it is a clustered index, and its leaf nodes store the data of the corresponding row records.

Non-Clustered Index

Clustered index query

If the query condition is the primary key (clustered index), you only need to scan the B+ tree once to locate the row record data to be found through the clustered index.

For example: select * from user where id = 1;

Nonclustered index query

If the query condition is a common index (non-clustered index), the B+ tree needs to be scanned twice. The first scan locates the value of the clustered index through the common index, and then the second scan locates the row record data to be found through the value of the clustered index.

For example: select * from user where age = 30;

1. First locate the primary key value id=1 through the common index age=30
2. Then locate the row record data through the clustered index id=1

First, locate the clustered index value through the value of the ordinary index, and then locate the row record data through the value of the clustered index. It is necessary to scan the index B+ tree twice, and its performance is lower than scanning the index tree once.

Index Covering

All column data required by SQL can be obtained on one index tree without returning to the table, which is faster.

For example: select id,age from user where age = 10;

Query using id, age, name:

select id,age,name,salary from user where age = 10;
Explain analysis: age is a common index, but the name column is not in the index tree. Therefore, after querying the values ​​of id and age through the age index, it is necessary to go back to the table and query the value of name. The Using where in the Extra column indicates that a table query is performed.

Type: all, indicating full table scan

Add a joint index to the table: CREATE INDEX idx_user_name_age_salary ON mydb.user (name, age, salary);

Explain analysis: At this time, the fields age and name are the composite index idx_age_name. The values ​​of the queried fields id, age, and name are just in the index tree. It is only necessary to scan the composite index B+ tree once. This is how index coverage is achieved. At this time, the Extra field is Using index, which means that index coverage is used.

Pagination query (not using index):

After adding an index, you can use it to quickly search.

Summarize

This is the end of this article about table return and index coverage in MySQL. For more relevant MySQL table return and index coverage 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:
  • MySQL table return causes index invalidation case explanation
  • MySQL uses covering index to avoid table return and optimize query
  • How to use MySQL covering index and table return
  • How much does MySQL table return performance damage

<<:  HTML blockquote tag usage and beautification

>>:  Summary of CSS counter and content

Recommend

Detailed explanation of nginx's default_server definition and matching rules

The default_server directive of nginx can define ...

In-depth interpretation of /etc/fstab file in Linux system

Preface [root@localhost ~]# cat /etc/fstab # # /e...

Comparison of mydumper and mysqldump in mysql

If you only want to back up a few tables or a sin...

Docker Stack deployment method steps for web cluster

Docker is becoming more and more mature and its f...

How to start the spring-boot project using the built-in linux system in win10

1. Install the built-in Linux subsystem of win10 ...

Linux's fastest text search tool ripgrep (the best alternative to grep)

Preface Speaking of text search tools, everyone m...

Summary of XHTML application in web design study

<br />Generally speaking, the file organizat...

XHTML Getting Started Tutorial: Form Tags

<br />Forms are an important channel for use...

CSS3 sample code to achieve element arc motion

How to use CSS to control the arc movement of ele...

What scenarios are not suitable for JS arrow functions?

Table of contents Overview Defining methods on an...

MySQL slow query optimization: the advantages of limit from theory and practice

Many times, we expect the query result to be at m...

MySQL 5.6 zip package installation tutorial detailed

Previously, we all used files with the suffix .ms...

Detailed explanation of Vue save automatic formatting line break

I searched for many ways to change it online but ...

How to make full use of multi-core CPU in node.js

Table of contents Overview How to make full use o...