a little bit of tech, a little bit of green, to help tame the savage techmachine.
笔者在工作中有一上百万条记录的表,在jsp页面中需对该表进行分页显示, 便考虑用rownum来作,
下面是具体方法(每页显示20条):  http://www.acnow.net/ JVL9l5
"select * from tabname where rownum<20 order by name"
 但却发现oracle却不能按自己的意愿来执行,而是先随便20条记录,然后再 order by,后经咨询oracle,说rownum确实就这样,想用的话,只能用子查询 来实现先排序,后rownum,方法如下: JVL9l5
"select * from (select * from tabname order by name) where  rownum<20",但这样一来,效率会较低很多。  JVL9l5
后经笔者试验,只需在order by 的字段上加主键或索引即可让oracle先按 该字段排序,然后再rownum;方法不变:  http://www.acnow.net/ JVL9l5
"select * from tabname where rownum<20 order by name"  http://www.acnow.net/ JVL9l5
经笔者反复验证,都没有问题。 ://www.acnow
posted on 2004-10-06 14:39  xyublog  阅读(1362)  评论(1编辑  收藏  举报