一、返回要求行数
select * from tab1 where rownum<=2,结果会返回两条数据,若是
select * from tab1 where rownum=2,结果会一条都没有,因为rownum是依次对数据做标识的,没有第一,就没有第二;
故而SQL应为:
select * from (select tt.*,tt.rownum nm from tab1 tt where rownum<=2) where nm=2;
二、返回随机行数
select * from (select tt.c1,tt.c2 from tab1 tt order by dbms_random.value() ) where rownum<=3;
数据库执行顺义因为是select rownum orderby 为了随机取数,必须先orderby 随机排序,再rownum取数。
不能错写成:select *from tab1 where rownum<=3 order by dbms_random.value;