oracle 中,rownum像一个隐藏的字段,记录的是行数。
select rownum,a.* from table a
可以查第几条数据,
select * from (select rownum rn ,a.* from table a) b where b.rn= 你要查询的行数。