(Sql Server)分页

sql server中没有 limit 分页,但是可以使用下边的模板进行分页。 

select * from 表名 
order by 排序列名 [倒叙:desc] offset 每页数量 * (页码-1) rows fetch next 每页数量 rows only

 详情可以参考:https://blog.csdn.net/weixin_42780928/article/details/91954951

 

 

 

博客参考:

sqlserver 2012开窗函数快速分页:https://blog.csdn.net/weixin_42780928/article/details/91954951

posted @ 2022-01-28 10:52  细胞何  阅读(86)  评论(0编辑  收藏  举报