现在的位置: 首页 > 综合 > 正文

几种流行的数据库SQL分页

2018年01月09日 ⁄ 综合 ⁄ 共 364字 ⁄ 字号 评论关闭

1.Oracle:

  select * from ( select row_.*, rownum rownum_ from ( query_SQL ) row_ where rownum =< max) where rownum_ >= min

 2.SQL Server:

  select top @pagesize * from tablename where id not in (select top @pagesize*(@page-1) id from tablename order by id) order by id

 3.MySQL

  select * from tablename limit position, counter

 4.DB2

  select * from (select *,rownumber() as ROW_NEXT from tablename) where ROW_NEXT between min and max 

抱歉!评论已关闭.