Oracle
 sql >> Base de Dados >  >> RDS >> Oracle

SQL Server equivalente da função WM_CONCAT


Você não tem uma função equivalente para isso, mas ainda pode simular (use CROSS APPLY e FOR XML PATH('') ). exemplo,
USERID  ADDRESSLINE1
==========================
1       First Street
1       Second Street
2       32th Street
2       24th Street
2       25th Street

resultará
USERID  ADDRESSLIST
============================
1       First Street, Second Street
2       32th Street, 24th Street, 25th Street

Usando esta consulta:
SELECT  a.UserID, 
        SUBSTRING(d.Addresses,1, LEN(d.Addresses) - 1) AddressList
FROM
        (
            SELECT DISTINCT UserID
            FROM tableName
        ) a
        CROSS APPLY
        (
            SELECT [AddressLine1] + ', ' 
            FROM tableName AS B 
            WHERE A.UserID = B.UserID 
            FOR XML PATH('')
        ) D (Addresses) 

Demonstração do SQLFiddle