Oracle数据库分页的集中方法(三种方法)
在 做项目中用到了分页,下面说一下oracle分页的方法;
采用伪列 rownum
查询前10条记录
[sql] select * from t_user t where ROWNUM <10;
按照学生ID排名,抓取前三条记录
-- 不能对ROWNUM使用>(大于1的数值)、>=(大于或等于1的数值)、=(大于或等于1的数值),否则无结果 -- 所以直接用只能从1开始 -- rownum >10 没有记录,因为第一条不满足去掉的话,第二条的rownum又成了1,所以永远没有满足条件的记录。 select * from student where rownum>=1; --如果想要用rownum不从1开始,需按下面方法使用 select a1.* from (select student.*,rownum rn from student) a1 where rn >5; --分页查询一 select * from (select a1.*,rownum rn from (select * from student) a1 where rownum <=5) where rn>=2; --分页查询二 select a1.* from (select student.*,rownum rn from student where rownum <=5) a1 where rn >=3; --分页查询三 select a1.* from (select student.*,rownum rn from student) a1 where rn between 3 and 5;
相关推荐
oraclemch 2020-11-06
dbasunny 2020-08-16
娜娜 2020-06-22
Seandba 2020-08-16
专注前端开发 2020-10-21
苏康申 2020-11-13
vitasfly 2020-11-12
liuyang000 2020-09-25
FellowYourHeart 2020-10-05
赵继业 2020-08-17
whyname 2020-08-16
拼命工作好好玩 2020-08-15
langyue 2020-08-15
写程序的赵童鞋 2020-08-03
Accpcjg 2020-08-02
tydldd 2020-07-30
好记忆也需烂 2020-07-28