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?

link|improve this question

feedback

8 Answers

up vote 6 down vote accepted

This should work for you. Tested all the way back to SQL 2000.

create table #user (username varchar(25))

insert into #user (username) values ('Paul')
insert into #user (username) values ('John')
insert into #user (username) values ('Mary')

declare @tmp varchar(250)
SET @tmp = ''
select @tmp = @tmp + username + ', ' from #user

select SUBSTRING(@tmp, 0, LEN(@tmp))
link|improve this answer
Yes, that's exactly what I need. Thanks. – SeasonedCoder May 21 '09 at 2:54
+1, but select SUBSTRING(@tmp, 0, LEN(@tmp)) looks incorrect (to me) while apparently working (I tried it). The...turgid...prose of the MSDN page on substring fails to clarify why it works, but I guess the end point is start_expression + length_expression without correcting start_expression, and since if you start with a number less than 1 it starts with "the first character" (e.g., 1), I guess it sort of works by the back door. I think I'll use select SUBSTRING(@tmp, 1, LEN(@tmp) - 1) instead, though. – T.J. Crowder Aug 7 '11 at 11:53
Yeah, apparently, since select SUBSTRING('testing', -2, 5) gives us 'te' (e.g., exactly what select SUBSTRING('testing', 1, 2) would give us), as in both cases the resulting (exclusive) end index is 3. Not behavior I'd want to rely on. Is there some specific reason you do? – T.J. Crowder Aug 7 '11 at 11:57
No special reason, just the fact that my roots are in C++ so I'm used to zero-offset arithmetic... – mwigdahl Aug 7 '11 at 14:36
feedback

You can use this query to do the above task:

DECLARE @test NVARCHAR(max)  
SELECT @test = COALESCE(@test + ',', '') + field2 FROM #test
SELECT field2 = @test 

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

link|improve this answer
feedback

If you're executing this through PHP, what about this?

$hQuery = mysql_query("SELECT * FROM users");
while($hRow = mysql_fetch_array($hQuery)) {
    $hOut .= $hRow['username'] . ", ";
}
$hOut = substr($hOut, 0, strlen($hOut) - 1);
echo $hOut;
link|improve this answer
Oh my bad, it seems your running this through the console. – James Brooks May 20 '09 at 12:50
I need this done in sql, not in php or whatever (I'm using c# actually) – SeasonedCoder May 21 '09 at 2:23
Yeah I noticed it wasn't PHP. – James Brooks May 21 '09 at 9:37
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#.

link|improve this answer
feedback
 select
   distinct  
    stuff((
        select ',' + u.username
        from users u
        where u.username = username
        order by u.username
        for xml path('')
    ),1,1,'') as userlist
from users
group by username

had a typo before, the above works

link|improve this answer
feedback
DECLARE @EmployeeList varchar(100)

SELECT @EmployeeList = COALESCE(@EmployeeList + ', ', '') + 
   CAST(Emp_UniqueID AS varchar(5))
FROM SalesCallsEmployees
WHERE SalCal_UniqueID = 1

SELECT @EmployeeList

source: http://www.sqlteam.com/article/using-coalesce-to-build-comma-delimited-string

link|improve this answer
feedback

In SQLite this is simpler. I think there are similar implementations for MySQL, MSSql and Orable

CREATE TABLE Beatles (id integer, name string );
INSERT INTO Beatles VALUES (1, "Paul");
INSERT INTO Beatles VALUES (2, "John");
INSERT INTO Beatles VALUES (3, "Ringo");
INSERT INTO Beatles VALUES (4, "George");
SELECT GROUP_CONCAT(name, ',') FROM Beatles;
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.