码迷,mamicode.com
首页 > 数据库 > 详细

mysql分页性能

时间:2018-03-29 21:21:59      阅读:187      评论:0      收藏:0      [点我收藏+]

标签:mysql   blog   div   select   where   userinfo   user   inf   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分页性能

标签:mysql   blog   div   select   where   userinfo   user   inf   mysql分页   

原文地址:https://www.cnblogs.com/stin/p/8671942.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!