Answer: How to use GROUP BY to concatenate strings in SQL Server? #computers #dev #development
Answer: How to use GROUP BY to concatenate strings in SQL Server? #computers #dev #development
How to use GROUP BY to concatenate strings in SQL Server?
How do I get:
id Name Value 1 A 4 1 B 8 2 C 9
to
id Column 1 A:4, B:8 2 C:9
Answer [by Dana the Sane]: How to use GROUP BY to concatenate strings in SQL Server?
I’ve looked for ways to do this before, and besides writing a stored proc, there isn’t an easy way to do it. I resort to writing a script or using an ETL tool like Talend to do…
View On WordPress














