不能直接用rownum,要查詢出來(lái)以后用別名轉(zhuǎn)換。
以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;
更多信息請(qǐng)查看IT技術(shù)專欄