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

各种数据库的分页查询语句

时间:2017-03-26 21:10:52      阅读:238      评论:0      收藏:0      [点我收藏+]

标签:select   weight   acl   pre   offset   nbsp   gre   oracle数据库   class   

1.oracle数据库分页

1 select * from (select a.*,rownum rc from 表名 where rownum<=endrow) a where a.rc>=startrow


2.DB2数据库分页

1 Select * from (select rownumber() over() as rc,a.* from (select * from 表名 order by 列名) as a) where rc between startrow and endrow


3.SQL Server 2000数据库分页

1 Select top pagesize * from 表名 where 列名 not  in(select top pagesize*page 列名 from  表名 order by 列名) order by 列名

 
4.SQL Server 2005数据库分页

1 Select * from (select 列名,row_搜索number() over(order by  列名1) as 别名from 表名) as t where t.列名1>=startrow and t.列名1<=endrow

 
5.MySQL数据库分页

1 Select * from 表名 limit startrow,pagesize
2 (Pagesize为每页显示的记录条数)


6.PostgreSQL数据库分页

1 Select * from 表名 limit pagesize,offset startrow
2 (Pagesize为每页显示的记录条数.)

 
7.通用模式

1 select * from ( select * from tb_student where sid not in(select sid from tb_student where rownum<=(currentPage-1)*pageSize)) where rownum <=pageSize;

 



各种数据库的分页查询语句

标签:select   weight   acl   pre   offset   nbsp   gre   oracle数据库   class   

原文地址:http://www.cnblogs.com/kingxiaozi/p/6623997.html

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