sql >> データベース >  >> RDS >> Sqlserver

次のシナリオの CSV 値を取得する方法

    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
    


    1. SQLのMAX関数でのみ重複行を更新します

    2. MySql Xml関数のパフォーマンス?

    3. SQL Developer 4

    4. EPPLUS でリストから Excel にエクスポート