MySQL paging query optimization techniques

MySQL paging query optimization techniques

In applications with paging queries, queries that include LIMIT and OFFSET are very common, and almost every one of them will have an ORDER BY clause. If index sorting is used, it will be very helpful for performance optimization, otherwise the server will need to do a lot of file sorting.

A common problem is that the offset value is too large. If the query is something like LIMIT 10000, 20, 10020 rows will be generated and the previous 10000 rows will be discarded, which is very expensive. Assuming that all pages are accessed with the same frequency, such a query will scan half of the table on average. To optimize them, you can limit the maximum number of pages that can be accessed in the paginated view, or make large and cheap queries more efficient.

A simple trick to improve performance is to perform queries on a covering index instead of on the entire row. You can union the result with the complete row and then get the additional columns you need. This will be more efficient, for example, the following query:

SELECT film_id, description FROM sakila.film ORDER BY title LIMIT 50, 5;

If the data table is large, you can optimize it as follows:

SELECT film.film_id, film.description
FROM sakila.film
	INNER JOIN (
    SELECT film_id FROM sakila.film
    ORDER BY title LIMIT 50, 5)
  ) as lim USING(film_id);

This "inferred join query" works effectively because it uses indexes to reduce the number of rows that the server has to access to check the data. Once the rows required for review are found, they are joined with the rows of the corresponding data table to obtain the other columns of the corresponding rows.

Sometimes you can also convert limit into a fixed position query, which can be completed by range scanning the index. For example, if you precompute a fixed position column called position, you can rewrite the query as follows:

SELECT film_id, description FROM sakila.film
WHERE position BETWEEN 50 AND 54 ORDER BY position;

Sorted data can be handled in a similar way, but will usually be affected by the GROUP BY operation. In most cases, the sort value needs to be calculated and stored in advance.

The real problem with LIMIT and OFFSET is OFFSET, which means that the server will discard many rows. If an ordered bookmark is used to record the position of the next row to be retrieved, the next data can be accessed starting from the last position. For example, if you need to paginate rental records, starting with the latest rental record and working backwards, you can rely on the fact that the primary key of the record is always increasing, so you can query the first page of data like this:

SELECT * FROM sakila.rental
ORDER BY rental_id DESC LIMIT 20;

This query returns data between 16049 and 16030. The next query can start from where it ended previously:

SELECT * FROM sakila.rental
WHERE rental_id < 16030 
ORDER BY rental_id DESC LIMIT 20;

This trick works no matter how far off the offset you start your query from.

Other techniques include using pre-computed statistics or querying by joining tables with redundant primary keys and sort columns, both of which improve query efficiency by trading space for time.

The above is the details of the optimization techniques for MySQL paging queries. For more information on the optimization of MySQL paging queries, please pay attention to other related articles on 123WORDPRESS.COM!

You may also be interested in:
  • Implementation of MySQL large page query optimization for millions of data
  • How to implement paging query in MySQL
  • How to query data from multiple unrelated tables and paging in Mysql
  • MySQL query sorting and paging related
  • MySQL optimization tutorial: large paging query
  • How to implement paging query using MySQL

<<:  Design theory: Why are we looking in the wrong place?

>>:  Four data type judgment methods in JS

Recommend

Vue3 (Part 2) Integrating Ant Design Vue

Table of contents 1. Integrate Ant Design Vue 2. ...

Detailed installation and configuration of MySql on Mac

1. Download and install Download the community ed...

Websocket+Vuex implements a real-time chat software

Table of contents Preface 1. The effect is as sho...

How to install MySQL for beginners (proven effective)

1. Software Download MySQL download and installat...

Programs to query port usage and clear port usage in Windows operating system

In Windows operating system, the program to query...

Layim in javascript to find friends and groups

Currently, layui officials have not provided the ...

Explanation of the configuration and use of MySQL storage engine InnoDB

MyISAM and InnoDB are the most common storage eng...

Vue Getting Started with Weather Forecast

This article example shares the specific code of ...

Detailed tutorial on installation and configuration of nginx under Centos7

Note: The basic directory path for software insta...

Example of ellipsis when CSS multi-line text overflows

Ellipses appear when multi-line text overflows Th...

The difference between MySQL user management and PostgreSQL user management

1. MySQL User Management [Example 1.1] Log in to ...