标题 | oracle通过行范围查询取4至10行并排序 |
范文 | 不能直接用rownum,要查询出来以后用别名转换。 以EMP表为范例,取4至10行: 1 select * from (select rownum id,t.* from emp t) where id between 4 and 10; 有需要排序的,一定要这样处理: 1234567 select * from ( select rownum rn,t.* from ( select a.* from eba02 a order by eba003) t where rownum <= 110) where rn >= 110; |
随便看 |
|
在线学习网范文大全提供好词好句、学习总结、工作总结、演讲稿等写作素材及范文模板,是学习及工作的有利工具。