desafortunadamente, no hay una manera fácil de hacerlo en SQL Server. Las soluciones conocidas son:
- truco xml (ver más abajo);
- usar variables para acumular datos (no funciona para varias filas de grupos, solo con el cursor);
- agregado CLR personalizado;
aquí está el xml:
select
n.name1,
stuff(
(
select ', ' + p.product
from prod as p
where p.id_name = n.id
for xml path(''), type).value('.', 'nvarchar(max)')
, 1, 2, '') as products
from name as n
aquí está la variable:
declare @product nvarchar(max), @id int
select @id = 1
select @product = isnull(@product + ', ', '') + product
from prod
where id_name = @id
select name1, @product as products
from name
where id = @id