博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
分页存储过程
阅读量:6908 次
发布时间:2019-06-27

本文共 2258 字,大约阅读时间需要 7 分钟。

      
varchar
(
255
),       
--
 表名
    
@fldName
      
varchar
(
255
),       
--
 字段名
    
@PageSize
     
int
 
=
 
10
,           
--
 页尺寸
    
@PageIndex
    
int
 
=
 
1
,            
--
 页码
    
@IsCount
      
bit
 
=
 
0
,            
--
 返回记录总数, 非 0 值则返回
    
@OrderType
    
bit
 
=
 
0
,            
--
 设置排序类型, 非 0 值则降序
    
@strWhere
     
varchar
(
5000
=
 
''
  
--
 查询条件 (注意: 不要加 where)
AS
/**/
/**********************************
Author:xuty
date:20070706
descript:解密exec sp_decrypt 'GetRecordFromPage'
    GetRecordFromPage得到
Date:2007-07-06
@strWhere:最多只能存3500字节,不然系统可能会出错
    
*********************************
*/
declare
 
@strSQL
   
varchar
(
7999
)       
--
 主语句
declare
 
@strTmp
   
varchar
(
5000
)        
--
 临时变量
declare
 
@strOrder
 
varchar
(
400
)        
--
 排序类型
declare
 
@counts
  
int
declare
 
@strPageNum
 
nvarchar
(
4000
declare
 
@PageNum
 
int
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
if
 
@IsCount
 
!=
 
0
    
set
 
@strSQL
 
=
 
'
select count(*) as Total from [
'
 
+
 
@tblName
 
+
 
'
]
'
if
 
@strWhere
 
!=
 
''
begin
       
set
 
@strPageNum
 
=
 
'
select @counts=count(*) from [
'
 
+
 
@tblName
 
+
 
'
]
'
 
+
 
'
 where 
'
+
@strWhere
end
 
else
begin
    
set
 
@strPageNum
 
=
 
'
select @counts=count(*) from [
'
 
+
 
@tblName
 
+
 
'
]
'
 
end
exec
 sp_executesql 
@strPageNum
,N
'
@Counts int out 
'
,
@Counts
 out
if
 
@Counts
 
<=
 
@pageSize
    
set
 
@PageNum
 
=
 
1
else
    
set
 
@PageNum
 
=
 (
@Counts
 
/
 
@pageSize
+
 
1
exec
 (
@strSQL
)
select
 
@PageNum
GO

转载地址:http://omgdl.baihongyu.com/

你可能感兴趣的文章
创业的国度
查看>>
001作业题
查看>>
字节字符转换流
查看>>
Hadoop序列化-------总结
查看>>
YII2 update vendor error
查看>>
从cpp-empty-test说起
查看>>
Redis密码验证情况下创建集群参考资料
查看>>
ssh连接复用
查看>>
我的友情链接
查看>>
原生js弹窗
查看>>
修改Hosts文件
查看>>
Python基本概念
查看>>
网络工程师该何去何从
查看>>
yum源配置 20000多个rpm包
查看>>
Ubuntu 16.04安装pip、pip3、ipython和ipython3
查看>>
error: command 'gcc' failed with exit status 1
查看>>
如何启动oracle数据库服务和监听
查看>>
Lync 客户端功能对比之电话支持
查看>>
C#操作数据库
查看>>
CSS感言1 初级。
查看>>