Oracle数据库查询中返回指定的行数例如31到40,主键ID,但不连续,请问这样的语句如何写?
发布网友
发布时间:2022-04-08 23:19
我来回答
共3个回答
热心网友
时间:2022-04-09 00:48
oracle分页:
select * from (
select t.*,rownum from (
select * from table1 where condition order by column) t )
where rownum>(pangeNow-1)*5 and rownum<=(pageNow)*5
热心网友
时间:2022-04-09 02:06
使用rownum 多层嵌套追问语句怎么写呢
追答我又不知道你的表字段,怎么写啊
热心网友
时间:2022-04-09 03:41
用rownum来取31到40行