niestety nie ma na to łatwego sposobu w SQL Server. Znane rozwiązania to:
- sztuczka xml (patrz poniżej);
- używanie zmiennej do gromadzenia danych (nie działa dla wielu wierszy grup, tylko z kursorem);
- niestandardowa agregacja CLR;
oto 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
oto zmienna:
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