博客
关于我
强烈建议你试试无所不能的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/

你可能感兴趣的文章
Sandcastle入门:创建C#帮助文档
查看>>
[bzoj 4036][HAOI2015]按位或
查看>>
Django的ModelForm
查看>>
C++对象指针—指向对象成员的指针
查看>>
supermap使用小结
查看>>
FocusBI:地产分析&雪花模型
查看>>
ZOJ 3870 Team Formation 位运算 位异或用与运算做的
查看>>
UITabBar背景替换
查看>>
SharePoint2013 App 开发中 自定义网站栏,内容类型,列表。
查看>>
Fitnesse - Slim Tables
查看>>
华硕笔记本无法U盘启动,快捷键识别不了
查看>>
JS移动客户端--触屏滑动事件
查看>>
PyCharm 怎么查看 Python 的变量类型和变量内容
查看>>
贪心,布置作业
查看>>
LA 3415 保守的老师
查看>>
不使用中间变量交换两数
查看>>
前端开发资料详解
查看>>
Django基础之创建admin账号
查看>>
2017.12.27 清华 张钹院士
查看>>
vue.js 2.0开发
查看>>