码迷,mamicode.com
首页 > 编程语言 > 详细

java之真假分页

时间:2017-06-13 16:47:39      阅读:160      评论:0      收藏:0      [点我收藏+]

标签:erp   个数   tab   数据   ref   .com   pre   log   and   

真分页(要的是什么范围的记录在数据库查的时候就只查这几条记录):
select s.* from (select *,row_number() over(order by SLoginId) as row_number from student) as swhere row_number between ? and ?
假分页(它至少要查你要的记录数以上的记录个数。你查5条可能查了几十条以后再在里面查你要的5条的):
模板select top rowsPerpage from table where id not in(select top (curPage-1)*rowsPerpage id from table)
例子:select top 5 * from student where sid not in(select top 5 sid from student) ----第二页

java之真假分页

标签:erp   个数   tab   数据   ref   .com   pre   log   and   

原文地址:http://www.cnblogs.com/wangyage/p/7001160.html

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