oracle 分页
Posted Jotal
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了oracle 分页相关的知识,希望对你有一定的参考价值。
oracle分页操作
select * from emp;
select * from emp where rownum<=3;
--方式1 子查询分页:需要改动原语句
select * from (
select rownum rn,emp.* from emp where rownum<=5
) where rn>=3;
--方式2 三层嵌套子循环
select * from(
select t.*,rownum rn from
(select * from em) t
where rownum<=5
)where rn>=3;
--方式3
select * from(
select t.*,rownum rn from
(select * from emp) t
) where rn>=3 and rn<=5;--或者用between 3 and 5
以上是关于oracle 分页的主要内容,如果未能解决你的问题,请参考以下文章