SQL Server实现分页方法介绍

一、创建测试表

create table [dbo].[student](
    [id] [int] not null,
    [name] [nvarchar](50) null,
    [age] [int] null)

二、创建测试数据

declare @i int
set @i=1
while(@i<10000)
begin
    insert into student select @i,left(newid(),7),@i+12
    set @i += 1
end

三、测试

1、使用top关键字

top关键字表示跳过多少条取多少条

declare @pagecount int  --每页条数
declare @pageno int  --页码
declare @startindex int --跳过的条数
set @pagecount=10
set @pageno=3
set @startindex=(@pagecount*(@pageno-1)) 
select top(@pagecount) * from student
where id not in
(
  select top (@startindex) id from student order by id 
) order by id

测试结果:

2、使用row_number()函数

declare @pagecount int  --页数declare @pageno int  --页码set @pagecount=10set @pageno=3--写法1:使用between and select t.row,* from (   select row_number() over(order by id asc) as row,* from student) t where t.row between (@pageno-1)*@pagecount+1 and @pagecount*@pageno--写法2:使用 “>”运算符 select top (@pagecount) * from (   select row_number() over(order by id asc) as row,* from student) t where t.row >(@pageno-1)*@pagecount--写法3:使用and运算符 select top (@pagecount) * from (   select row_number() over(order by id asc) as row,* from student) t where t.row >(@pageno-1)*@pagecount and t.row<(@pageno)*@pagecount+1

四、总结

row_number()只支持sql2005及以上版本,top有更好的可移植性,能同时适用于sql2000及以上版本、access。

这篇文章介绍了sql server实现分页方法,文中通过示例代码介绍的非常详细。对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下

(0)
上一篇 2022年3月21日
下一篇 2022年3月21日

相关推荐