Sqlserver
 sql >> Base de données >  >> RDS >> Sqlserver

COMMENT obtenir la valeur CSV pour le scénario suivant

select AccountNumber, 
       stuff((select ',' + Product 
                  from YourTable t2 
                  where t2.AccountNumber = t1.AccountNumber 
                  order by Product 
                  for xml path('')),1,1,'') as ProductString
    from YourTable t1
    group by AccountNumber