天天看点

如何搜索出第N~M条记录?

   select * from 表 where rownum <= m

   minus

   select * from 表 where rownum <= n;