Answers for "How to concatenate text from multiple rows into a single text string in SQL Server"

SQL
0

How to concatenate text from multiple rows into a single text string in SQL Server

SELECT STRING_AGG(Name, ', ') AS Departments
FROM HumanResources.Department;
Posted by: Guest on February-05-2022

Code answers related to "How to concatenate text from multiple rows into a single text string in SQL Server"

Code answers related to "SQL"

Browse Popular Code Answers by Language