码迷,mamicode.com
首页 > Web开发 > 详细

PHP分页优化

时间:2015-03-18 17:44:50      阅读:164      评论:0      收藏:0      [点我收藏+]

标签:

最快
select id,name,content,time,re_id,is_replay from tb_content where re_id = 0  and id between 19993 and 19998 order by id desc
大于10000条以上用
select id,name,content,time,re_id,is_replay from tb_content where re_id = 0 and id >=(select id from tb_content where re_id = 0 limit 19992, 1)  limit 6
少于10000条用
select id,name,content,time,re_id,is_replay from tb_content where re_id = 0  limit 19987, 6

 

PHP分页优化

标签:

原文地址:http://www.cnblogs.com/flying-tx/p/4347644.html

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