欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Sql Server 字符串聚合函数

程序员文章站 2023-12-03 10:36:52
如下表:aggregationtable id name 1 赵 2 钱 1 孙 1 李 2 周 如果想得到下图的...
如下表:aggregationtable
id name
1
2
1
1
2

如果想得到下图的聚合结果

id name
1 赵孙李
2 钱周

利用sum、avg、count、count(*)、max 和 min是无法做到的。因为这些都是对数值的聚合。不过我们可以通过自定义函数的方式来解决这个问题。
1.首先建立测试表,并插入测试数据:

复制代码 代码如下:

create table aggregationtable(id int, [name] varchar(10))
go
insert into aggregationtable
    select 1,'赵' union all
    select 2,'钱' union all
    select 1,'孙' union all
    select 1,'李' union all
    select 2,'周'
go

2.创建自定义字符串聚合函数
复制代码 代码如下:

create function aggregatestring
(
    @id int
)
returns varchar(1024)
as
begin
    declare @str varchar(1024)
    set @str = ''
    select @str = @str + [name] from aggregationtable
    where [id] = @id
    return @str
end
go

3.执行下面的语句,并查看结果
复制代码 代码如下:

select dbo.aggregatestring(id),id from aggregationtable
group by id

结果为:

id name
1 赵孙李
2 钱周