码迷,mamicode.com
首页 > 数据库 > 详细

sql分页

时间:2015-12-30 23:58:41      阅读:404      评论:0      收藏:0      [点我收藏+]

标签:

declare @currentPageIndex int
set @currentPageIndex=3
select top 5 * from (select row_number() over(order by getdate() desc) as rownumber,* from test) as temp_table
where rownumber>5*(@currentPageIndex-1)

sql分页

标签:

原文地址:http://www.cnblogs.com/laopo/p/5090369.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!