有關Oracle分頁查詢語句

yeahokay發表於2008-05-19

1. 最好還是利用分析函式
row_number() over ( partition by col1 order by col2 )

比如想取出100-150條記錄,按照tname排序

select tname.tabtype from (
select tname.tabtype,row_number() over ( order by tname ) rn from tab
)
where rn between 100 and 150;

2. 直接使用rownum 虛列
select tname.tabtype from (
select tname.tabtype,rownum rn from tab where rownum <= 150
)
where rn >= 100;

格式:

select * from (select rownumr,all_objects.* from all_objects where rownum <=
:min) t
where t.r >= :max;
使用序列不能基於整個記錄集合進行排序,如果指定了order by子句,排序的的是選出來的記錄集的排序.

簡單的例子:select * from(select * from nspgnz.users where rownum<=10) where rownum>=1 (本例經過測試,透過)

[@more@]

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/786540/viewspace-1004217/,如需轉載,請註明出處,否則將追究法律責任。

相關文章