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. 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 Examples: 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:
|
<<: A brief introduction to the simple use of CentOS7 firewall and open ports
>>: JS realizes the card dealing animation
Solution to the data asymmetry problem between My...
Recently, a new requirement "front-end cache...
When I first taught myself web development, there...
Run cmd with administrator privileges slmgr /ipk ...
Problem Reproduction Alibaba Cloud Server, using ...
First download JDK. Here we use jdk-8u181-linux-x...
Copy code The code is as follows: Difference betw...
https://docs.microsoft.com/en-us/windows/wsl/wsl-...
Table of contents Preface start React Lifecycle R...
Recently, WeChat was forced by Apple to develop a...
Preface There are many open source monitoring too...
OBS studio is cool, but JavaScript is cooler. Now...
Preface: I wrote this because I helped my friend ...
I have written an example before, a simple UDP se...
Basic Concepts Before operation, you must first u...