Combining result strings in SQL Server
This is just a quick tip on combining (aggregating) result strings in SQL Server. Sometimes it's useful to add multivalued columns to results (or CSV files) but it's not all that simple.
For combining results of a JOIN to a single column you can use the STUFF function ...
more ...