当前位置: 移动技术网 > IT编程>数据库>Oracle > oracle通过行范围查询取4至10行并排序

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

2017年12月12日  | 移动技术网IT编程  | 我要评论

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

如对本文有疑问, 点击进行留言回复!!

相关文章:

验证码:
移动技术网