oracle通过行范围查询取4至10行

软件发布|下载排行|最新软件

当前位置:首页IT学院IT技术

oracle通过行范围查询取4至10行

  2020-12-17 我要评论
这篇文章主要介绍了oracle通过行范围查询取4至10行,以EMP表为范例,需要的朋友可以参考下

不能直接用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;

Copyright 2022 版权所有 软件发布 访问手机版

声明:所有软件和文章来自软件开发商或者作者 如有异议 请与本站联系 联系我们