- select * from userinfo limit 20000,10 # 数据越往后越慢
- 索引表中扫:
select * from userinfo where id in (select id from userinfo limit 20000,10) # 也慢
- select * from userinfo where id > 20000 limit 10 # 快,但需记录当前页记录的id
Posted Claire_xu
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql分页性能相关的知识,希望对你有一定的参考价值。
- select * from userinfo limit 20000,10 # 数据越往后越慢
- 索引表中扫:
select * from userinfo where id in (select id from userinfo limit 20000,10) # 也慢
- select * from userinfo where id > 20000 limit 10 # 快,但需记录当前页记录的id
以上是关于mysql分页性能的主要内容,如果未能解决你的问题,请参考以下文章