SQL Server四种分页的解决办法
这篇文章主要为大家详细介绍了SQL Server四种分页的简单示例,具有一定的参考价值,可以用来参考一下。
对此感兴趣的朋友,看看idc笔记做的技术笔记!
第一种: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 ArtistModelswhere ArtistId not in (select top 15 ArtistId from ArtistModels)
------whereIdnotin(selecttop条数*页数 ArtistIdfrom ArtistModels)
执行结果:【图片暂缺】
第四种方式:用存储过程的方式进行分页
CREATE procedure page_Demo@tablename varchar(20),@pageSize int,@page intASdeclare @newspage int,@res varchar(100)beginset @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)endEXEC page_Demo @tablename='ArtistModels',@pageSize=3,@page=5
执行结果:【图片暂缺】
ps:
今天搞了一下午的分页,通过上网查资料和自己的实验,总结了四种分页方式供大家参考,有问题大家一起交流学习。注:关于SQL Server四种分页的简单示例的内容就先介绍到这里,更多相关文章的可以留意