取第10行到100行


select * from   
(  
select a.*,rownum rn from   
(  
select  a.*  
  from dba_objects a   
 order by object_id   
) a  
where rownum<=100 
) where rn>=11;  
原文地址:https://www.cnblogs.com/hzcya1995/p/13352112.html