SQL2005 大数据量检索的分页

 更新时间:2009年09月18日 23:29:53   作者:  
仅列出实例SQL,其他的请大家自己完成吧
@StartIndex为当前页起始序号,@EndIndex为当前页结束记录序号,可以直接作为参数输入,也可以通过输入PageSize和PageIndex计算得出
复制代码 代码如下:

select * from
(
select *,row_number() over(order by OrderColumn) as orderindex from TableName
) as a
where a.orderindex between @StartIndex and @EndIndex

相关文章

最新评论