前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >高效分页存储过程

高效分页存储过程

作者头像
Java架构师必看
发布2021-03-22 10:39:49
4610
发布2021-03-22 10:39:49
举报
文章被收录于专栏:Java架构师必看

存储过程与页面调用如下:CREATEPROCEDUREsearch_sp@tblNamevar

存储过程与页面调用如下:

CREATE PROCEDURE search_sp @tblName varchar(255), -- 表名 @strGetFields varchar(1000) = '*', -- 需要返回的列 @fldName varchar(255)='', -- 排序的字段名 @PageSize int = 10, -- 页尺寸 @PageIndex int = '', -- 页码 @doCount bit = 0, -- 返回记录总数, 非 0 值则返回 @OrderType bit = '', -- 设置排序类型, 非 0 值则降序 @strWhere varchar(1500) = '' -- 查询条件 (注意: 不要加 where) AS

declare @strSQL  nvarchar(4000) -- 主语句 declare @strTmp varchar(110) -- 临时变量 declare @strOrder varchar(400) -- 排序类型 if @doCount != 0 begin if @strWhere !='' set @strSQL = 'select count(1) as Total from [' + @tblName + '] where '+@strWhere else set @strSQL = 'select count(1) as Total from [' + @tblName + ']' end --以上代码的意思是如果@doCount传递过来的不是0,就执行总数统计。以下的所有代码都是@doCount为0的情况

else begin if @OrderType != 0 begin set @strTmp = '< (select min' set @strOrder = ' order by [' + @fldName +'] desc' --如果@OrderType不是0,就执行降序,这句很重要! end

else begin set @strTmp = '> (select max' set @strOrder = ' order by [' + @fldName +'] asc' end if @PageIndex = 1 begin if @strWhere != '' set @strSQL = 'select top ' + str(@PageSize) +' '+@strGetFields+ ' from [' + @tblName + '] where ' + @strWhere + ' ' + @strOrder else set @strSQL = 'select top ' + str(@PageSize) +' '+@strGetFields+ ' from ['+ @tblName + '] '+ @strOrder --如果是第一页就执行以上代码,这样会加快执行速度 end

else begin --以下代码赋予了@strSQL以真正执行的SQL代码 set @strSQL = 'select top ' + str(@PageSize) +' '+@strGetFields+ ' from [' + @tblName + '] where [' + @fldName + ']' + @strTmp + '(['+ @fldName + ']) from (select top ' + str((@PageIndex-1)*@PageSize) + ' ['+ @fldName + '] from [' + @tblName + ']' + @strOrder + ') as tblTmp)'+ @strOrder if @strWhere != '' set @strSQL = 'select top ' + str(@PageSize) +' '+@strGetFields+ ' from [' + @tblName + '] where [' + @fldName + ']' + @strTmp + '([' + @fldName + ']) from (select top ' + str((@PageIndex-1)*@PageSize) + ' [' + @fldName + '] from [' + @tblName + '] where ' + @strWhere + ' ' + @strOrder + ') as tblTmp) and ' + @strWhere + ' ' + @strOrder end end exec SP_EXECUTESQL @strSQL

GO

页面调用: SearchText=ChkStr(request("SearchText")) types=ChkStr(request("type")) tblName="search_sp" strGetFields="*" fldName="info_id" if trim(SearchText)="" then response.End() end if if request("page")="" then page=1 else page=request("page") end if if types<>"" then strWhere="title like ''%"&SearchText&"%'' and type=''"&types&"''" else strWhere="title like ''%"&SearchText&"%''" end if strSql="exec search_sp  'info','info_id,type,sortid,title,dateandtime','info_id',30,'"&page&"',0,1,'"&strWhere&"'" set rs = conn.Execute(strSql)

本文由来源 21aspnet,由 javajgs_com 整理编辑,其版权均为 21aspnet 所有,文章内容系作者个人观点,不代表 Java架构师必看 对观点赞同或支持。如需转载,请注明文章来源。

本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档