select * from(select n.*,rownum r from news n where rownum<=5)where r>10
2 回答
暮色呼如
TA贡献1853条经验 获得超9个赞
select * from(select n.*,rownum r from news n where rownum<=5)where r>0,这样就有数据了。。你这类的SQL可以把子查询单独放到PLSQL中查一下看看数据,看看这些数据能不能满足外面的where r>10这个条件!
慕田峪4524236
TA贡献1875条经验 获得超5个赞
这样试试:
select t.* from (select n.*,rownum r from news n where rownum<=5) as t
where t.r>10
添加回答
举报
0/150
提交
取消