Cómo usar Group_concat en SQL Server

SELECT STRING_AGG(column_name, ',') AS Result
FROM table_name
Energetic Emu