天天看點

如何搜尋出第N~M條記錄?

   select * from 表 where rownum <= m

   minus

   select * from 表 where rownum <= n;