oracle通过行范围查询取4至10行并排序
oracle通过行范围查询取4至10行并排序
发布时间:2016-12-28 来源:查字典编辑
摘要:不能直接用rownum,要查询出来以后用别名转换。以EMP表为范例,取4至10行:select*from(selectrownumid,t....

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

推荐文章
猜你喜欢
附近的人在看
推荐阅读
拓展阅读
相关阅读
网友关注
最新Oracle教程学习
热门Oracle教程学习
编程开发子分类