mssql 세로 결과를 하나의 필드에 출력

|

select stuff((

select ',' + fieldName

from dbo.Member

for xml path('')), 1, 2, '') as fieldName

And