淘先锋技术网

首页 1 2 3 4 5 6 7
在网上经常看到用oracle提取分页数据时喜欢这样写:
select userid,Name,rownum_ from ( select row_.*, rownum rownum_ from (SELECT * FROM v_users order by usertype) row_ where rownum <= 20) where rownum_ > 10
为什么一定要用两层子查询呢?其实至少我觉得可以优化成这样:
select * from (select e.*,rownum as rn from emp e) e where e.rn between 10 and 20;
以上是用scott的emp表做的例子。不过没有用到order by,个人觉得不好的是查出来的数据里总是有rn这一列存在。
昨天在看的时候突然想起这样一种写法,试了一下也可以做分页,拿出来看看,还是用scott的emp表做例子:
select * from emp where rowid not in(select rowid from emp where rownum<=10) and rownum<=10;
我只是觉得更加清楚一些了,但是我没有仔细考虑在性能上的问题,是不是很拙劣啊,希望能有高手指出不足。