评论

收藏

[Oracle] oracle通过行范围查询取4至10行并排序

数据库 数据库 发布于:2022-01-27 15:01 | 阅读数:480 | 评论:0

不能直接用rownum,要查询出来以后用别名转换。
以EMP表为范例,取4至10行:
select * from (select rownum id,t.* from emp t) where id between 4 and 10;
有需要排序的,一定要这样处理:
select * from ( 
select rownum rn,t.* from ( 
select a.* from eba02 a order by eba003) t where rownum <= 110) 
where rn >= 110;
关注下面的标签,发现更多相似文章