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

各种数据库的分页查询

时间:2017-02-20 00:04:41      阅读:301      评论:0      收藏:0      [点我收藏+]

标签:ble   数据   使用   mysq   mit   最大的   tab   start   not   

1、oracle

通过子查询rownum方式处理

内层查询控制最大值,外层查询控制最小值

示例:

select * from ( select a.*,rownum rn from table where rn < endrow) a where a.rn > startrow

 

 2、mysql

通过limit直接处理

select * from table limit startrow ,endrow

 

3、通用模式

使用差集的方式,先查询出最大的行数 ,再查出最小的行数,二者取差集

示例:

select * from table where rownum < endrow and

id not in ( select id from table where rownum < startrow) 

各种数据库的分页查询

标签:ble   数据   使用   mysq   mit   最大的   tab   start   not   

原文地址:http://www.cnblogs.com/hy87/p/6417738.html

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