Install sakilaWe will use the MySQL sample database sakila to demonstrate and explain SQL dev.mysql.com/doc/sakila/… Index Scan Sort MySQL has two ways to generate ordered results: through sorting operations; or by scanning in index order; if the value of the type column output by EXPLAIN is "index", it means that MySQL uses index scanning to do the sorting. Table StructureWe will use the rental table to explain CREATE TABLE `rental` ( UNIQUE KEY `rental_date` (`rental_date`,`inventory_id`,`customer_id`), KEY `idx_fk_inventory_id` (`inventory_id`), KEY `idx_fk_customer_id` (`customer_id`), KEY `idx_fk_staff_id` (`staff_id`), ) ENGINE=InnoDB AUTO_INCREMENT=16050 DEFAULT CHARSET=utf8mb4; Check whether Using filesort appears in Extra (the sorting operation that cannot be completed by using the index in MySQL is called "file sorting"). When we try to sort a field without an index, it is filesort. Although there is a file in it, it has nothing to do with the file. It is actually an internal quick sort. Situations where index scans can be used for sorting Fill in the leading columnThere is one case where the ORDER BY clause does not need to satisfy the leftmost prefix requirement of the index, that is, when the leading column is a constant. If constants are specified for these columns in the WHERE clause or JOIN clause, the lack of indexes can be "made up". We use the Sakila database to test You can see The Extra in the book says Using where, but when I executed it, I used Using index condition. The reason is that the version used in high-performance MySQL is 5.5, and the index condition pushdown in version 5.6 is still in the stage of not being officially released. The reason why there is no filesort here is because there is a constant condition of rental_date = '2005-05-25', which is equivalent to filling the first column of the index, thus meeting the leftmost prefix requirement of the index. The order by contains only one sortSELECT rental_id, staff_id FROM sakila.rental WHERE rental_date = '2005-05-25' ORDER BY inventory_id desc You can see Note that the condition used in the book is rental_date>'2005-05-25' WHERE rental_date > '2005-05-25' ORDER BY rental_date, inventory_id At this time, we cannot use the index sorting, but directly scan the entire table to sort it. The reason is that there are too many data items returned, and it is not cost-effective to use the index query at this time. It should be noted that the number of rows in the explanation here is not accurate, it is just an estimate. In fact, there are 16036 data items in the query according to this condition. To solve this problem, you need to add limit SELECT rental_id, staff_id FROM sakila.rental WHERE rental_date > '2005-05-25' ORDER BY rental_date, inventory_id limit 0,10 The corresponding execution plan You can see that the index is used Situations where index scans cannot be usedThe query conditions contain different sorting directionsSELECT rental_id, staff_id FROM sakila.rental WHERE rental_date = '2005-05-25' ORDER BY inventory_id desc, customer_id asc Both columns in the index are in ascending order. Now in the order by, one column is in ascending order and the other is in descending order, so a secondary sort is required. The query condition refers to a column that is not in the indexSELECT rental_id, staff_id FROM sakila.rental WHERE rental_date ='2005-08-23 21:01:09' ORDER BY inventory_id ,staff_id When the leftmost prefix cannot be combinedSELECT rental_id, staff_id FROM sakila.rental WHERE rental_date ='2005-08-23 21:01:09' ORDER BY customer_id When the first column is the query rangeSELECT rental_id, staff_id FROM sakila.rental WHERE rental_date > '2005-08-22' ORDER BY inventory_id,customer_id where there are multiple equal conditionsSELECT rental_id, staff_id FROM sakila.rental WHERE rental_date ='2005-08-23 21:01:09' and inventory_id in(1,2) ORDER BY customer_id Simply put, those that do not meet the leftmost prefix of the index will be sorted. SummarizeToday we explained index scan sorting in MySQL. Tomorrow we will continue to introduce other methods of building high-performance indexes. Stay tuned and see you in the next article! The above is the detailed content of the simple use of MySQL index scan. For more information about MySQL index scan sort, please pay attention to other related articles on 123WORDPRESS.COM! You may also be interested in:
|
<<: js code that associates the button with the enter key
>>: Zabbix monitoring docker application configuration
Simple description Since it was built with Centos...
1. Software Download MySQL download and installat...
This article shares the specific method of instal...
Table of contents What is an agent Basic knowledg...
Database modification or deletion operations may ...
mysql correctly cleans up binlog logs Preface: Th...
This article example shares the specific code for...
To execute a shell command in Docker, you need to...
Preface If you are going to interview for a Linux...
Table of contents question analyze solve Replace ...
Table of contents Vue2 Writing Vue3 plugin versio...
Preface In MySQL, InnoDB belongs to the storage e...
I want to achieve a situation where the width of ...
This article shares the specific code for impleme...
In front-end development, we are in direct contac...