Preface We all know that MySQL query uses the select command, and with the limit and offset parameters, it can read records in a specified range. However, the reason why the offset is too large affects the query performance and the optimization method We inevitably need paging in our business systems. When you think of paging, you will definitely think of using LIMIT in SQL to implement it. However, incorrect use of LIMIT can lead to performance issues (SQL execution is slow and may bring down the server) and may be criticized by your supervisor; so let's take a look at how to use LIMIT correctly. Let’s take a look at the detailed introduction. LIMIT OFFSET, ROW_COUNT to implement paging Ways to have performance issues SELECT * FROM myTable ORDER BY `id` LIMIT 1000000, 30 The person who wrote this SQL statement must have thought: the MySQL database will directly locate the 1,000,000th number that meets the conditions, and then fetch 30 pieces of data. LIMIT 1000000, 30 means: scan 1000030 rows that meet the condition, discard the first 1000000 rows, and then return the last 30 rows. A better way SELECT t.* FROM ( SELECT id FROM myTable ORDER BY id LIMIT 1000000, 30 ) q JOIN myTable t ON t.id = q.id The general principle is:
Friends who are interested in the specific principle analysis can read this article: MySQL ORDER BY / LIMIT performance: late row lookups postscript To be continued. References
Summarize The above is the full content of this article. I hope that the content of this article will have certain reference learning value for your study or work. If you have any questions, you can leave a message to communicate. Thank you for your support for 123WORDPRESS.COM. You may also be interested in:
|
<<: How to monitor Windows performance on Zabbix
>>: Detailed example of jQuery's chain programming style
Data Sheet /* Navicat SQLite Data Transfer Source...
background Getting the slow query log from mysql....
Detailed explanation of tinyMCE usage initializat...
Table of contents 1. Introduction 2. Advantages 3...
NULL and NOT NULL modifiers, DEFAULT modifier, AU...
Now many people are joining the ranks of website ...
<br />Original link: http://www.dudo.org/art...
The complete syntax of the select statement is: S...
When we package the webpackjs file, we introduce ...
Why can it set the height, but unlike elements lik...
Download MySQL https://dev.mysql.com/downloads/my...
summary Project description format <img src=&q...
Table of contents 1. Back up the old MySQL5.7 dat...
Deepin 2014 download and installation For downloa...
This article shares the specific code of vue elem...