2017より前のSQLServerでは、次のことができます。
select stuff( (select ',' + cast(t.id as varchar(max))
from tabel t
for xml path ('')
), 1, 1, ''
);
stuff()
の唯一の目的 最初のコンマを削除することです。作業はfor xml path
によって行われています 。