Leider gibt es in SQL Server keine einfache Möglichkeit, dies zu tun. Bekannte Lösungen sind:
- xml-Trick (siehe unten);
- Variable zum Sammeln von Daten verwenden (funktioniert nicht für mehrere Gruppenzeilen, nur mit Cursor);
- benutzerdefiniertes CLR-Aggregat;
hier ist 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
Hier ist die 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