If I issue SELECT username FROM Users I get this result:
username -------- Paul John Mary
but what I really need is one row with all the values separated by comma, like this:
Paul, John, Mary
How do I do this?
|
If I issue username -------- Paul John Mary but what I really need is one row with all the values separated by comma, like this: Paul, John, Mary How do I do this?
| ||||
|
feedback
|
|
This should work for you. Tested all the way back to SQL 2000.
| |||||||||
feedback
|
|
You can use this query to do the above task:
For detail and step by step explanation visit the following link http://oops-solution.blogspot.com/2011/11/sql-server-convert-table-column-data.html | ||||
|
feedback
|
|
If you're executing this through PHP, what about this?
| |||||||
feedback
|
|
good review of several approaches: | |||
|
feedback
|
|
A clean and flexible solution in MS SQL Server 2005/2008 is to create a CLR Agregate function. You'll find quite a few articles (with code) on google. It looks like this article walks you through the whole process using C#. | |||
|
feedback
|
had a typo before, the above works | |||
|
feedback
|
source: http://www.sqlteam.com/article/using-coalesce-to-build-comma-delimited-string | ||||
|
feedback
|
|
In SQLite this is simpler. I think there are similar implementations for MySQL, MSSql and Orable
| |||
|
feedback
|