Sql Server 字符串聚合函数

如下表: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 钱周
(0)
上一篇 2022年3月21日
下一篇 2022年3月21日

相关推荐