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

前端之家收集整理的这篇文章主要介绍了oracle通过行范围查询取4至10行并排序前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

@H_404_0@不能直接用rownum,要查询出来以后用别名转换。


@H_404_0@以EMP表为范例,取4至10行:


<div class="jb51code">
<pre class="brush:sql;">
select from (select rownum id,t. from emp t) where id between 4 and 10;

@H_404_0@有需要排序的,一定要这样处理:

sql;">
select * from ( 

select rownum rn,t.* from (

select a.* from eba02 a order by eba003) t where rownum <= 110)

where rn >= 110;

原文链接:https://www.f2er.com/oracle/65243.html

猜你在找的Oracle相关文章