SQL Server – How to Concatenate Multiple Rows into One Field

sql-servert-sql

I have a table with three column like image (Source) and want to write a query that give a table like image (Result)

enter image description here

Best Answer

SELECT DISTINCT customer,
    stuff((
            SELECT ',' + cast(policy as varchar(10))
            FROM table1 b
            WHERE a.customerid = b.customerid
            FOR XML path('')
            ), 1, 1, '') [policies]
FROM table1 a
Related Question