select * from tbname where rownum<=n;

解决方案 »

  1.   

    没有了,只有select * from tbname where rownum<=n;
    select * from tbname where rownum<n(结束) minus select * from tbname where rownum<m;(取m到n-1之间的记录)
      

  2.   

    对, select * from tablename where rownum<=n
      

  3.   

    kerisyml首先感谢你对我的帮助,我试了你的第二种方法,我是这么写的:
    select * from tabname where rownum<5 minus select * from tabname where rownum<7;不知我是否写错了,怎么显示"未选定行"呢?
      

  4.   

    select * from tabname where rownum>5 minus select * from tabname where rownum<7;
      

  5.   

    select * from T_color where rownum<7 minus select * from T_color where rownum<5