Você deseja usar
FOR XML PATH
construir:SELECT ACCOUNT,
unit,
SUM(state_fee),
Stuff((SELECT ', ' + code
FROM tblmta t2
WHERE t2.ACCOUNT = t1.ACCOUNT
AND t2.unit = t1.unit
AND t2.id = '123'
FOR XML PATH('')), 1, 2, '') [Codes]
FROM tblmta t1
WHERE t1.id = '123'
GROUP BY ACCOUNT,
unit
Veja outros exemplos aqui:
- A mesma unidade SQL entre duas tabelas precisa de números de pedido em 1 célula
- Consulta SQL para obter resultado agregado em separadores de vírgulas junto com grupo por coluna no SQL Server