SQLserver使用自定义函数以及游标
时间:2021-07-01 10:21:17
帮助过:103人阅读
编号 |
标准宗地编码(landCode) |
所在区段编码(sectCode) |
1 |
131001BG001 |
G001 |
2 |
131001BG002 |
G001 |
3 |
131001BG003 |
G001 |
4 |
131001BG004 |
G002 |
5 |
131001BG005 |
G003 |
现在需要将表中的数据转换为如下表所示结果:
编号 |
区段编码 |
包含的标准宗地 |
1 |
G001 |
131001BG001,131001BG002,131001BG003 |
2 |
G002 |
131001BG004 |
3 |
G003 |
131001BG005 |
在SQL server数据库中,创建自定义函数,通过游标,将表的数据转化为结果表,函数代码如下所示:
代码如下:
create function combstr(@name nvarchar(50))
returns nvarchar(300)
as
begin
declare @resultStr nvarchar(300)
declare @tempStr nvarchar(500)
declare @flag int
declare myCur cursor --定义游标
For(select landCode from land where sectCode=@name )
open myCur –-打开游标
fetch next from myCur into tempStr –将游标下移
set @flag=0
while @@fetch_status=0
begin
if @flag=0
begin
set @resultStr=@tempStr
end
else
begin
set @resultStr=@resultStr+','+@tempStr
end
set @flag=@flag+1
fetch next from myCur into @tempStr
end
close myCur
deallocate myCur
return @result
end
您可能感兴趣的文章:
- sqlserver中的自定义函数的方法小结
- mysql建立自定义函数的问题
- 深入mysql创建自定义函数与存储过程的详解
- MySQL中文汉字转拼音的自定义函数和使用实例(首字的首字母)
- MySQL 自定义函数CREATE FUNCTION示例
- 谈谈sqlserver自定义函数与存储过程的区别
- 浅谈mysql 自定义函数
- Mysql中实现提取字符串中的数字的自定义函数分享
- Sql Server中常用的6个自定义函数分享
- 在ASP.NET 2.0中操作数据之七十四:用Managed Code创建存储过程和用户自定义函数(下部分)