What is the TSQL syntax to format my output so that the column values appear as a string, seperated by commas.
Example, my table CARS has the following:
CarID CarName
1 Porsche
2 Mercedes
3 Ferrari
How do I get the car names as : 'Porsche, Mercedes, Ferrari'
Thanks, Murali