Reputation: 2378
I have a table with three column like image (Source) and want to write a query that give a table like image (Result)
Upvotes: 0
Views: 1870
Reputation: 5094
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
Upvotes: 6