几十上百万行,如何快速查询出表数据

编程入门 行业动态 更新时间:2024-10-26 06:38:35

几十上百万行,如何<a href=https://www.elefans.com/category/jswz/34/1771431.html style=快速查询出表数据"/>

几十上百万行,如何快速查询出表数据

/* 函数名称: sp_GetRecordFromPage 函数功能: 获取指定页的数据 参数说明:@tblName      包含数据的表名 @fldName      关键字段名 @PageSize     每页记录数 @PageIndex    要获取的页码 @OrderType    排序类型, 0 - 升序, 1 - 降序 @strWhere     查询条件 (注意: 不要加 where赋值为'') 
*/ 
CREATE PROCEDURE sp_GetRecordFromPage @tblName      varchar(255),       -- 表名 @fldName      varchar(255),       -- 要排序的字段名列表。多个字段,之间用逗号隔开。 @PageSize     int = 10,           -- 页尺寸 默认大小是10@PageIndex    int = 1,            -- 页码   默认大小是1@OrderType    bit = 0,            -- 设置排序类型, 非 0 值则降序 @strWhere     varchar(2000) = ''  -- 查询条件 (注意: 不要加 where) 
AS declare @strSQL   varchar(6000)       -- 主语句 
declare @strTmp   varchar(1000)       -- 临时变量 
declare @strOrder varchar(500)        -- 排序类型 if @OrderType != 0 
begin set @strTmp = '<(select min' set @strOrder = ' order by [' + @fldName + '] desc' 
end 
else 
begin set @strTmp = '>(select max' set @strOrder = ' order by ' + @fldName +' asc' 
end set @strSQL = 'select top ' + str(@PageSize) + ' * 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) + ' * from [' + @tblName + '] where [' + @fldName + ']' + @strTmp + '([' + @fldName + ']) from (select top ' + str((@PageIndex-1)*@PageSize) + ' [' + @fldName + '] from [' + @tblName + '] where ' + @strWhere + ' ' + @strOrder + ') as tblTmp) and ' + @strWhere + ' ' + @strOrder if @PageIndex = 1 
begin set @strTmp = '' if @strWhere != '' set @strTmp = ' where (' + @strWhere + ')' set @strSQL = 'select top ' + str(@PageSize) + ' * from [' + @tblName + ']' + @strTmp + ' ' + @strOrder 
end exec (@strSQL) GO 


 

更多推荐

几十上百万行,如何快速查询出表数据

本文发布于:2024-02-12 20:16:12,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1689259.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:快速   数据

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!