分页存储过程基础:SqlServer的Top与Oracle的RowNum
网络整理 - 07-27
平时的项目开发中,分页存储过程是用的比较多的存储过程,SqlServer分页存储过程中经常要用到top,Oracle中则经常用到了RowNum.
现在,有一个UserInfo表,一个字段是UserId,另一个字段是UserName,其中是UserId是自动增长的,步长是1.表中共有30条数据,其中UserId的值不一定是连续的。现在要实现的目的是取其中的第11至第20条记录。先看SqlServer的几种做法:
第一种写法:
select top 10 *
from UserInfo
where UserId in
(
select top 20 UserId
from UserInfo
)
order by UserId desc
当然也可以这样写:
select * from UserInfo where rownum<20
minus
select * from UserInfo where rownum<10
这种写法没有前面那种效率高。
但不能这样写:
select t.* from UserInfo t where rownum between 10 and 20
select t.* from UserInfo t where rownum > 10 and rownum <=20
上 面两种写法都取不到数据的。
对于Sqlserver 和Oracle实现取表其中的第11至第20条记录如果有更好的写法 ,可以贴出来学习下