oracle 高效分页
摘要:
经过多次测试如下方法比较NB: select * from (select A.*,Rownum RN from (select * from 表名 where 1 = 1 order by 排序字段 desc ) A where rownum <= 结束页数 ) w 阅读全文
posted @ 2016-03-15 11:44 叶远明 阅读(350) 评论(0) 推荐(0) 编辑