一聚教程网:一个值得你收藏的教程网站

热门教程

直接通过SQL取分页数据实例

时间:2022-06-29 08:13:43 编辑:袖梨 来源:一聚教程网

从网上找了些资料,考虑直接在SQL底层,直接只取当前页的数据,再绑定,这样效率应该会高些。

核心的SQL查询语句是这样的:

 代码如下 复制代码
select top @size * from (@sqlstring) a
 where @key < = (select min(@key) from (select top @star @key from (@sqlstring) a order by @key desc ) a)
 and @key >= (select min(@key) from (select top @end @key from (@sqlstring) a order by @key desc) a)
 order by @key desc

 

其中:

@size:一页的数量;

@sqlstring:原始查询语句;

@key:关键字段/排序字段,它应是唯一字段;

@star:开始记录数索引,star = size*(p-1)+1;

@end:结束记录数索引,end = size*p+1;

若排序不同,则代码应做相应变化:

 代码如下 复制代码
select top @size * from (@sqlstring) a
where @key > = (select max(@key) from (select top @star @key from (@sqlstring) a order by @key asc) a)
 and @key <= (select max(@key) from (select top @end @key from (@sqlstring) a order by @key asc) a)
 order by @key asc

 
我就是这样构建取数据集的方法,然后把相关参数传进来,拼接查询,返回数据集绑定即可。

这个方案暂时未发现出错,效率也有所提升。

热门栏目