Comment utiliser Group_Concat dans SQL Server

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