1、平时的项目开发中,分页存储过程是用的比较多的存储过程,SqlServer分页存储过程中经常要用到top,Oracle中则经常用到了RowNum. 现在,有一个UserInfo表,一个字段是UserId,另一个字段是UserName,其中是UserId是自动增长的,步长是1.表中共有30条数据,其中UserId的值不一定是连续的。现在要实现的目的是取其中的第11至第20条记录。先看SqlServer的几种做法: 第一种写法:select top 10 * from UserInfo where UserId in
2、 ( select top 20 UserId from UserInfo ) order by UserId desc 第二种写法: select top 10 * from UserInfo where UserId not in (selecttop10 UserId from UserInfo ) 第三种写法: select top 10 * from UserInfo where UserId> (select max(UserId) from (s
3、electtop10 UserId from UserInfo orderby UserId) a) 第四种写法(只可在Sqlserver2005中):select * from (select Row_Number() over (Orderby UserId) as RowId ,*from UserInfo) U where U.RowId between10and20 Sqlserver中其实还有另外几种写法,不一一写出。四种方法中,后两种的写法要比前两种写法效率要高些,但第四种只能写在SqlServer20
4、05中。 在看Oracle中实现取其中的第11至第20条记录的做法之前,先看看一些人在使用RowNum遇到的莫名其妙的怪事。表同样是UserInfo,30条数据select t.*from userinfo t where rownum>10 查询结果: 理论上应该是有20条数据才对啊,问题出现在哪呢? 因为ROWNUM是对结果集加的一个伪列,即先查到结果集之后再加上去的一个列(这里要强调的一点是:先要有结果集)。简单的说rownum是对符合条件结果的序列号。所以对于rownum>10没有数据是否可以这样理解: ROWNU
5、M是一个序列,是oracle数据库从数据文件或缓冲区中读取数据的顺序。它取得第一条记录则rownum值为1,第二条为2,依次类推。如果你用>,>=,=,between...and这些条件,因为从缓冲区或数据文件中得到的第一条记录的rownum为1,则被删除,接着取下条,可是它的rownum还是1,又被删除,依次类推,最后的查询结果为空。 再看下面一条sql语句:select t.* from userinfo t where rownum!=10 查询结果: 查出的来结果不是21条,而是9条。可以这样理解:rownum为9后的记
7、实现取UserInfo表其中的第11至第20条记录,可以这样写:select * from (select rownum as rn,t.* from userinfo t where rownum >0)where rn between 10 and 20查询结果: 当然也可以这样写: select * from UserInfo where rownum<20 minus select * from UserInfo where rownum<10这种写法没有前面
8、那种效率高。 但不能这样写:select t.* from UserInfo t where rownum between 10 and 20select t.* from Us