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

你可能感兴趣的文章
使用virtualbox安装centos6的内置无线网卡桥接设置
查看>>
Eclipse深色背景及各种字体颜色设置
查看>>
IDEA 如何使用JRebel 部署web项目
查看>>
MySQL乱码收集_持续更新
查看>>
PhalGo-Request
查看>>
hibernate 级联查询
查看>>
如何对数据库进行管理
查看>>
最新资源分享
查看>>
IO多路复用之select总结
查看>>
mpstat命令和/proc/stat文件
查看>>
[c#基础]堆和栈
查看>>
数据分析师成长之路-软件篇
查看>>
addOneRequest方法的作用
查看>>
[SQLXML]FOR XML语法导出XML的易错之处
查看>>
Apple Pay编程指导
查看>>
iOS注册远程推送消息证书后提示此证书签发者无效的解决办法
查看>>
Java NIO系列教程(四) Scatter/Gather
查看>>
.net你不行——是你的父亲把你封装的太死,还是你的子孙们太懒,未把你发扬光大。...
查看>>
【AIX】 snap 命令
查看>>
使用nginx lua实现网站统计中的数据收集
查看>>