Normal paging queryWhen we encounter big data queries in our daily work, our first reaction is to use paging queries. MySQL supports the limit statement to select a specified number of data, while Oracle can use rownum to select The mysql paging query statement is as follows: SELECT * FROM table LIMIT [offset,] rows | rows OFFSET offset
How to optimizeFrom the above summary, we can clearly see that when the offset is large and the amount of data is large, the query time is still quite long, so we will start to optimize these two types. Large offset Using subquery We can first locate the id of the offset position and then query the data select * from test limit 1000000,10 select id from test limit 1000000,1 select * from test where id>=(select id from test limit 1000000,1)limit 10 Through execution, we can find that the first one takes the longest time, the third one is slightly better than the first one, and the subquery is faster when using the index. But it only applies to cases where the id is incremented Use id limitationThis method has higher requirements. The ID must be continuously increasing, and the range of the ID must be calculated, and then between is used. The SQL is as follows: select * from test where id between 1000000 and 1000100 limit 100; select * from test where id>=1000000 limit 100 Results are fast Here, limit is used to limit the number of entries, and no offset is used. Optimizing the problem of large data volume
This is the end of this article about how to quickly query 10 million records in MySQL. For more information about MySQL quick query, please search previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: Detailed explanation of how Vue returns values to dynamically generate forms and submit data
>>: Summary of the use of CSS scope (style splitting)
This article example shares the specific code of ...
Recently, the Vue project needs to refresh the da...
In the MySQL database, when we need fuzzy query, ...
1. The significance of building nexus service As ...
Friends always ask me how to hide Linux processes...
Regarding the high-performance distributed memory...
In many projects, it is necessary to implement th...
I collected a lot of them, but all ended in failu...
Table of contents Environmental conditions Errors...
Copy code The code is as follows: <iframe src=...
border-radius:10px; /* All corners are rounded wi...
<br /> Focusing on the three aspects of text...
Table of contents 1. What is Dockerfile? 2. Analy...
Table of contents 8. CSS3 click button circular p...
Effect picture: The implementation code is as fol...