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

你可能感兴趣的文章
iOS开发-NSURLSession详解
查看>>
Linux Shell 数字计算与比较
查看>>
基于Https协议返回Jason字符串
查看>>
把数组排成最小的数
查看>>
canvas绘制经典星空连线效果
查看>>
Java I/O Reader and Writer
查看>>
正则表达式解析
查看>>
CJSON create.c
查看>>
MATH6005 Final Assignment MATH6005 2018-19
查看>>
为什么软件开发周期通常是预期的两三倍?
查看>>
高精度四则运算
查看>>
关于网络爬虫项目的项目建议(NABCD)
查看>>
Daily Scrum 11.13
查看>>
设计模式学习笔记——访问者模式
查看>>
asp.net mvc 的 视图(view )的模块化开发
查看>>
LeetCode237-Delete Node in a Linked List
查看>>
I.MX6 USB Camera
查看>>
MySQL 存储过程理解
查看>>
linux C 数组操作
查看>>
g++编译后中文显示乱码解决方案(c++)
查看>>