转 https://blog.csdn.net/jquerys/article/details/52432770
第一种:
select t.*, rownum as rid from (
select * from interface_log a,interface_key b,interface c where a.inte_log_key=b.intekey_key and a.inte_log_mainuuid=c.inte_uuid ORDER BY inte_log_cdate desc
) t
where rownum >10 and rownum <21
第二种:
select * from(
select t.*, rownum as rid from (
select * from sjzx_interface_log a,sjzx_interface_key b,sjzx_interface c where a.inte_log_key=b.intekey_key and a.inte_log_mainuuid=c.inte_uuid ORDER BY inte_log_cdate desc
) t
where rownum <21 )
where rid >10
第一种会导致错误,
因为rownum总是从1开始的,第一条不满足去掉的话,第二条的rownum 又成了1。依此类推,所以永远没有满足条件的记录。
可以这样理解:rownum是一个序列,是Oracle数据库从数据文件或缓冲区中读取数据的顺序。
第二种先把前21条数据取出来,编号,再从编号中取出第10条之后的