We can easily concatenate column values into a comma-separated list with a variable, but this solution we can avoid to use a variable. 1PRINT '-- Concatenating Column Values into a Comma-Separated List' 2 3GO 4 5--#region Create my test table 6 7begin try drop table YourTable ; end try begin catch end catch -- begin...