当前位置:数据库 > SQLServer >>

SQL2005 大数据量检索的分页

答案:@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

上一个:安装MSSql2005时 “以前的某个程序安装已在安装计算机上创建挂起” 的解决办法
下一个:安装SQL2005 29506错误码的解决方案

CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,