oracle 数据分页

 select * from (select rownum as num,emp.* from emp)
   where num >= 9 and num <= 12;

原文地址:https://www.cnblogs.com/pan11jing/p/1544952.html