Blackbox to dělá pomocí CROSS APPLY a FOR XML PATH:
declare @t table (id int, link_id int, name varchar(max))
insert into @t select 1, 11, 'test1'
union all select 2, 11, 'test2'
union all select 3, 11, 'test3'
union all select 4, 12, 'test4'
select b.link_id, d.link_names
from (
select distinct link_id
from @t a
) b
cross apply (
select name + ', ' as [text()]
from @t c
where b.link_id = c.link_id
for xml path('')
) d (link_names)
Pro každý řádek CROSS APPLY provede použitý poddotaz. V tomto případě je poddotaz volán dvakrát, pro link_id 11 a 12. Poddotaz pak zneužije operátor FOR XML k sečtení řetězců.
Pokud spustíte dotaz, vytiskne:
11 test1, test2, test3,
12 test4,