Detailed explanation of efficient MySQL paging

Detailed explanation of efficient MySQL paging

Preface

Usually, a "paging" strategy is adopted for MySQL queries with large amounts of data. However, if the page is turned to a later position, the query will become very slow because MySQL will spend a lot of time scanning the data that needs to be discarded.

Basic paging techniques

Usually, in order to achieve efficient paging, you need to apply a combined index to the WHERE condition column and the sort column in the query.
For example, creating an index (a, b, c) allows the following query to use the index, improving query efficiency:

1. Field sorting

ORDER BY a 
ORDER BY a,b
ORDER BY a, b, c 
ORDER BY a DESC, b DESC, c DESC 

2. Filter and sort

WHERE a = const ORDER BY b, c 
WHERE a = const AND b = const ORDER BY c 
WHERE a = const ORDER BY b, c 
WHERE a = const AND b > const ORDER BY b, c 

3. The following query cannot use the above index

ORDER BY a ASC, b DESC, c DESC // The sorting direction is inconsistent WHERE g = const ORDER BY b, c // Field g is not part of the index WHERE a = const ORDER BY c // Field b is not used 
WHERE a = const ORDER BY a, d // Field d is not part of the index

Solve the problem of page turning for large amounts of data

1. Change the query of LIMIT M,N to LIMIT N
For example, with LIMIT 10000,20, MySQL will need to read the first 10,000 rows and then get the next 20 rows, which is very inefficient. With LIMIT N, you can filter by the ID of the first or last record on each page, and then use descending and ascending to get the result set of the previous/next page.
2. Limit the number of pages users can turn. In actual product usage, users rarely care about the 10,000th search result.
3. Use delayed association
By using a covering index to query and return the required primary key, and then associating the original table with the returned primary key to obtain the required rows, the number of rows that Mysql scans and needs to discard can be reduced.

Examples:
Query using the index (sex,rating):

mysql> SELECT <cols> FROM profiles INNER JOIN (
-> SELECT <primary key cols> FROM profiles
-> WHERE x.sex='M' ORDER BY rating LIMIT 100000, 10
-> ) AS x USING(<primary key cols>);

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

You may also be interested in:
  • MySQL paging principle and efficient MySQL paging query statement
  • MySQL million-level paging optimization (MySQL ten million-level fast paging)
  • MySQL limit paging optimization method sharing
  • Examples of paging queries for three databases: oracle, mysql, and SqlServer
  • Detailed explanation of php+mysql paging code
  • mysql+php paging class (tested)
  • MySQL paging optimization analysis
  • Optimize Mysql limit, reference the compound index of fast paging from one million to ten million and apply it to lightweight framework
  • How to use select statement to implement mysql paging query in php
  • Comparison of two solutions for paging query in MySQL

<<:  A brief introduction to the simple use of CentOS7 firewall and open ports

>>:  JS realizes the card dealing animation

Recommend

Solution to the data asymmetry problem between MySQL and Elasticsearch

Solution to the data asymmetry problem between My...

Detailed explanation of Vue's caching method example

Recently, a new requirement "front-end cache...

How to implement HTML Table blank cell completion

When I first taught myself web development, there...

Windows Service 2016 Datacenter\Stand\Embedded Activation Method (2021)

Run cmd with administrator privileges slmgr /ipk ...

Linux centOS installation JDK and Tomcat tutorial

First download JDK. Here we use jdk-8u181-linux-x...

Common CSS Errors and Solutions

Copy code The code is as follows: Difference betw...

About WSL configuration and modification issues in Docker

https://docs.microsoft.com/en-us/windows/wsl/wsl-...

Summary of react basics

Table of contents Preface start React Lifecycle R...

Sample code for implementing dark mode with CSS variables

Recently, WeChat was forced by Apple to develop a...

How to Monitor Linux Memory Usage Using Bash Script

Preface There are many open source monitoring too...

Create a screen recording function with JS

OBS studio is cool, but JavaScript is cooler. Now...

UDP DUP timeout UPD port status detection code example

I have written an example before, a simple UDP se...