基于sqlserver的四种分页方式总结
第一种:row_number() over()方式
select * from (
select *, row_number() over(order by artistid ) as rowid from artistmodels
) as b
where rowid between 10 and 20
---where rowid between 当前页数-1*条数 and 页数*条数---
执行结果是:
第二种方式:offset fetch next方式(sql2012以上的版本才支持:推荐使用 )
select * from artistmodels order by artistid offset 4 rows fetch next 5 rows only
--order by artistid offset 页数 rows fetch next 条数 rows only ----
执行结果是:
第三种方式:--top not in方式 (适应于数据库2012以下的版本)
select top 3 * from artistmodels
where artistid not in (select top 15 artistid from artistmodels)
------where id not in (select top 条数*页数 artistid from artistmodels)
执行结果:
第四种方式:用存储过程的方式进行分页
create procedure page_demo
@tablename varchar(20),
@pagesize int,
@page int
as
declare @newspage int,
@res varchar(100)
begin
set @newspage=@pagesize*(@page - 1)
set @res='select * from ' +@tablename+ ' order by artistid offset '+cast(@newspage as varchar(10)) +' rows fetch next '+ cast(@pagesize as varchar(10)) +' rows only'
exec(@res)
end
exec page_demo @tablename='artistmodels',@pagesize=3,@page=5
执行结果:
ps:今天搞了一下午的分页,通过上网查资料和自己的实验,总结了四种分页方式供大家参考,有问题大家一起交流学习。