Cara menggabungkan teks dari beberapa baris menjadi satu string teks di SQL Server

SELECT STRING_AGG(Name, ', ') AS Departments
FROM HumanResources.Department;
shafeeque