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

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

参考答案:

正确答案:
答:select * from 表 where Rownum <= M
Minus
select * from 表 where Rownum <= N;