sql2种分页

时间:2014-08-20 21:00:33   收藏:0   阅读:191

  declare @time datetime
declare @ms int
set @time= getdate()
select ID,name from (select row_number() over(order by ID) as rowNum,* from dbo.testb) as t where rowNum between 500000 and 500100
set @ms=datediff(ms,@time,getdate())
print @ms



select top 100 * from dbo.testb where Id not in
    (select top 500000 id from dbo.testb order by id)
    order by id
   

sql2种分页,布布扣,bubuko.com

评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!