三层嵌套oracle数据库记录分页sql语句

select * from (select row_.*, rownum rownum_ from
(

 select * from flow_activity  t order by id desc


 )row_ where rownum<=100 ) where rownum_>90

 

其中这个红色部分 为可变化的部分。

你可能感兴趣的:(分页,sql语句,三层嵌套,oracle数据库记录)