SQL2005 大数据量检索的分页

前端之家收集整理的这篇文章主要介绍了SQL2005 大数据量检索的分页前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

@StartIndex为当前页起始序号,@EndIndex为当前页结束记录序号,可以直接作为参数输入,也可以通过输入PageSize和PageIndex计算得出
<div class="codetitle"><a style="CURSOR: pointer" data="42583" class="copybut" id="copybut42583" onclick="doCopy('code42583')"> 代码如下:

<div class="codebody" id="code42583">
select from
(
select
,row_number() over(order by OrderColumn) as orderindex from TableName
) as a
where a.orderindex between @StartIndex and @EndIndex

原文链接:https://www.f2er.com/mssql/66409.html

猜你在找的MsSQL相关文章