Oracle 使用 rownum 进行分页
select col1,col2 from ( select rownum r,col1,col2 from tablename where rownum <= 20 ) where r > 10
Oracle 使用 rownum 进行分页
select col1,col2 from ( select rownum r,col1,col2 from tablename where rownum <= 20 ) where r > 10