SQLSERVER中的ListAGG [英] ListAGG in SQLSERVER

查看:1151
本文介绍了SQLSERVER中的ListAGG的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试在SQLServer中汇总一个 STRING字段。我想在Oracle中找到相同的函数LISTAGG。

I'm trying to aggregate a 'STRING' field in SQLServer. I would like to find the same function LISTAGG like in Oracle .

您知道如何执行相同的函数或另一种方法吗?

Do you know how to do the same function or an another method?

例如,

Field A | Field B
1       |  A
1       |  B
2       |  A

我希望此查询的结果为

1 | AB
2 | A


推荐答案

SQL Server 2017 STRING_AGG 函数可用,大大简化了逻辑:

Starting in SQL Server 2017 the STRING_AGG function is available which simplifies the logic considerably:

select FieldA, string_agg(FieldB, '') as data
from yourtable
group by FieldA

的$ table $ b组中的数据


请参见带演示的SQL提琴

See SQL Fiddle with Demo

在SQL Server中,您可以使用 FOR XML PATH 获得结果:

In SQL Server you can use FOR XML PATH to get the result:

select distinct t1.FieldA,
  STUFF((SELECT distinct '' + t2.FieldB
         from yourtable t2
         where t1.FieldA = t2.FieldA
            FOR XML PATH(''), TYPE
            ).value('.', 'NVARCHAR(MAX)') 
        ,1,0,'') data
from yourtable t1;

请参见带有演示的SQL小提琴

这篇关于SQLSERVER中的ListAGG的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆