select * from(select rownum rn,t1.* from t_user t1 where rownum<m ) where rn>=n
m=当前页*页面容量+1
n=m-页面容量
oracle中的分页(笔记)
最新推荐文章于 2025-05-12 15:33:54 发布
select * from(select rownum rn,t1.* from t_user t1 where rownum<m ) where rn>=n
m=当前页*页面容量+1
n=m-页面容量