oracle rownum 是在结果集上添加虚拟序列,使用与<,<=,!= 单独使用>,>=时查询不出数据
在进行分页查询时 查询第6-10条数据
select * from (select *,rownum rn from tbl_user where rownum<=10) temp where temp.rn>5
oracle rownum 是在结果集上添加虚拟序列,使用与<,<=,!= 单独使用>,>=时查询不出数据
在进行分页查询时 查询第6-10条数据
select * from (select *,rownum rn from tbl_user where rownum<=10) temp where temp.rn>5