欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

oracle通過行范圍查詢?nèi)?至10行

 更新時間:2014年08月04日 17:47:26   投稿:whsnow  
這篇文章主要介紹了oracle通過行范圍查詢?nèi)?至10行,以EMP表為范例,需要的朋友可以參考下

不能直接用rownum,要查詢出來以后用別名轉(zhuǎn)換。

以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;

相關文章

最新評論