oracle 資料分頁查詢 (轉貼收集)

yunchat發表於2005-05-28

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;
使用序列不能基於整個記錄集合進行排序,如果指定了order by子句,排序的的是選出來的記錄集的排序.

------------------------------------------------------------------------
經過我的測試,在100萬條資料的表中,檢索資料的時候,方法2的速度要比方法1要快的.

[@more@]

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

相關文章