sql 分页
with #pager as
(
select * ,ROW_NUMBER() OVER(Order By ID) as rowid from table
)
select * from #pager where rowid between (130 * (50-1)+1) and 130 * 50 --50条/页,第130页
作者:xuejianxiyang
出处:http://xuejianxiyang.cnblogs.com
关于作者:Heaven helps those who help themselves.
本文版权归原作者和博客园共有,欢迎转载,但未经原作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利。