How to use indexes to optimize MySQL ORDER BY statements

How to use indexes to optimize MySQL ORDER BY statements

Create table & create index

create table tbl1 (
id int unique, sname varchar(50),
index tbl1_index_sname(sname desc)
);

Syntax for creating an index on an existing table

create [unique|fulltext|spatial] index index name on table name (field name [length] [asc|desc]);

MySQL can also use indexes to quickly perform sorting and grouping operations in ORDER BY and GROUP BY statements.

Optimize MySQL ORDER BY statements through index optimization:

1. ORDER BY index optimization

If a SQL statement is as follows:

SELECT [column1],[column2],…. FROM [TABLE] ORDER BY [sort];

By creating an index on the [sort] column, you can use the index to optimize order by.

2. Index optimization of WHERE + ORDER BY

Such as:

SELECT [column1],[column2],…. FROM [TABLE] WHERE [columnX] = [value] ORDER BY [sort];

Create a joint index (columnX, sort) to achieve order by optimization.

Note: If columnX corresponds to multiple values, the following statement cannot use the index to optimize the order by:

SELECT [column1],[column2],…. FROM [TABLE] WHERE [columnX] IN ([value1],[value2],…) ORDER BY [sort];

3. WHERE + multiple fields ORDER BY

SELECT * FROM [table] WHERE uid=1 ORDER x,y LIMIT 0,10;

Creating an index (uid, x, y) to optimize order by is much better than creating an index (x, y, uid).

MySQL Order By cannot use indexes to optimize sorting

1. Perform ORDER BY on different index keys: (create indexes for key1 and key2 separately)

SELECT * FROM t1 ORDER BY key1, key2;

2. Perform ORDER BY on non-contiguous index key parts: (create a joint index on key_part1 and key_part2; create an index on key2)

SELECT * FROM t1 WHERE key2=constant ORDER BY key_part2;

3. Using both ASC and DESC: (key_part1, key_part2 create a joint index)

SELECT * FROM t1 ORDER BY key_part1 DESC, key_part2 ASC;

4. The index key used to search records is not the same as the one used for ORDER BY: (key1 and key2 are indexed separately)

SELECT * FROM t1 WHERE key2=constant ORDER BY key1;

5. If you apply expressions (functions) to WHERE and ORDER BY columns, you cannot use indexes to optimize the order by.

SELECT * FROM t1 ORDER BY YEAR(logindate) LIMIT 0,10;

Special Tips:

1>MySQL can only use one index at a time. If you want to use indexes on multiple fields, create a composite index.

2> In an ORDER BY operation, MySQL uses the index only when the sort condition is not a query condition expression.

The above is the details of how MySQL uses indexes to optimize ORDER BY sorting statements. For more information about MySQL optimizing ORDER BY sorting statements, please pay attention to other related articles on 123WORDPRESS.COM!

You may also be interested in:
  • MySQL Order By Syntax Introduction
  • MySQL briefly understands how "order by" works
  • MySQL Order by statement usage and optimization detailed explanation
  • Analysis of two ideas to improve the query efficiency of Order by statement in MySQL
  • In-depth analysis of the order by and group by sequence issues in MySQL
  • MySQL database index order by sorting detailed explanation

<<:  In-depth explanation of nginx location priority

>>:  Multiple solutions for cross-domain reasons in web development

Recommend

Detailed explanation of how to introduce custom fonts (font-face) in CSS

Why did I use this? It all started with the makin...

CSS Paint API: A CSS-like Drawing Board

1. Use Canvas images as CSS background images The...

How to avoid duplication of data when inserting in MySql batch

Table of contents Preface 1. insert ignore into 2...

...

Example code for implementing ellipse trajectory rotation using CSS3

Recently, the following effects need to be achiev...

Pure CSS to achieve three-dimensional picture placement effect example code

1. Percentage basis for element width/height/padd...

How to completely uninstall iis7 web and ftp services in win7

After I set up the PHP development environment on...

Implementing custom radio and check box functions with pure CSS

1. Achieve the effect 2 Knowledge Points 2.1 <...

How to implement https with nginx and openssl

If the server data is not encrypted and authentic...

CSS to achieve scrolling image bar example code

On some websites, you can often see some pictures...

The difference and introduction of ARGB, RGB and RGBA

ARGB is a color mode, which is the RGB color mode...

VMware15 installation of Deepin detailed tutorial (picture and text)

Preface When using the Deepin user interface, it ...

Use of Linux relative and absolute paths

01. Overview Absolute paths and relative paths ar...

CSS layout tutorial: How to achieve vertical centering

Preface I have been summarizing my front-end know...

js realizes a gradually increasing digital animation

Table of contents background Achieve a similar ef...