这样:
select * from (select rownum,a.* from table1 a) b
where b.rownum>50
  and b.rownum<=60

解决方案 »

  1.   

    select * from table1 where rownum <=60
    minus
    select * from table1 where rownum <=50
    you should try to search the answer by yourself . there are plenty of same questions which are discussed before
      

  2.   

    其中ID为表的序列号。
    select * from(select * from(select * from (select * from 表名 order by ID desc)
    where rownum<50) order by ID) where rownum<61;
      

  3.   

    select * from (select rownum,a.* from table1 a where rownum<=60) b
    where b.rownum>50
      

  4.   

    select * from (select rownum aa,a.* from table1 a where rownum <=60) b
    where b.aa > 50