oracle 高效分页
Posted 叶远明
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了oracle 高效分页相关的知识,希望对你有一定的参考价值。
经过多次测试如下方法比较NB:
select * from (select A.*,Rownum RN from (select * from 表名 where 1 = 1 order by 排序字段 desc ) A where rownum <= 结束页数 ) where RN >= 开始页数
新人上路,各路大神请多多指教
以上是关于oracle 高效分页的主要内容,如果未能解决你的问题,请参考以下文章