select * from
(select rownum no ,
字段
from 表名 where 条件
)
where no < 101 and no>20;
oracle查询(指定行号,范围输出)
最新推荐文章于 2022-06-19 22:55:01 发布
select * from
(select rownum no ,
字段
from 表名 where 条件
)
where no < 101 and no>20;