Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Consider a database table holding names, with three rows:

Peter
Paul
Mary

Is there an easy way to turn this into a single string of Peter, Paul, Mary?

share|improve this question
4  
For answers specific to SQL Server, try this question. – Matt Hamilton Oct 12 '08 at 0:03
2  
For MySQL, check out Group_Concat from this answer – Pykler May 6 '11 at 19:48

25 Answers

up vote 195 down vote accepted

I had a similar issue when I was trying to join two tables with one-to-many relationships. In SQL 2005 I found that XML PATH method can handle the concatenation of the rows very easily.

If there is a table called STUDENTS

SubjectID       StudentName
----------      -------------
1               Mary
1               John
1               Sam
2               Alaina
2               Edward

Result I expected was:

SubjectID       StudentName
----------      -------------
1               Mary, John, Sam
2               Alaina, Edward

I used the following T-SQL:

Select Main.SubjectID,
       Left(Main.Students,Len(Main.Students)-1) As "Students"
From(Select distinct ST2.SubjectID, 
           (Select ST1.StudentName + ',' AS [text()]
            From dbo.Students ST1
            Where ST1.SubjectID = ST2.SubjectID
            ORDER BY ST1.SubjectID
            For XML PATH ('')) [Students]
     From dbo.Students ST2) [Main]

You can do the same thing in a more compact way if you can concat the commas at the beginning and use substring to skip the first one so you don't need to do a subquery:

Select distinct ST2.SubjectID, 
               substring((Select ','+ST1.StudentName  AS [text()]
                From dbo.Students ST1
                Where ST1.SubjectID = ST2.SubjectID
                ORDER BY ST1.SubjectID
                For XML PATH ('')),2, 1000) [Students]
         From dbo.Students ST2
share|improve this answer
2  
@Ritesh: You saved me a mountain of time with this little gem. Thank you ! – Scott Vercuski Jun 3 '10 at 18:22
2  
This works very well, thanks for that! – Brian Mains Feb 21 '11 at 14:30
@Ratesh: Thank you very much, you helped me a lot – Roman Jan 23 '12 at 16:10
I recieve an error "Incorrect syntax near the keyword 'For'" running MS SQL Server 2008 R2 – Menefee Mar 21 '12 at 18:21
Great solution. The following may be helpful if you need to handle special characters like those in HTML: Rob Farley: Handling special characters with FOR XML PATH(''). – Ben Hinman Apr 17 at 12:35

Use COALESCE:

DECLARE @Names VARCHAR(8000) 
SELECT @Names = COALESCE(@Names + ', ', '') + Name 
FROM People

Just some explanation (since this answer seems to get relatively regular views):

  • Coalesce is really just a helpful cheat that accomplishes two things:

1) No need to initialize @Names with an empty string value.

2) No need to strip off an extra separator at the end.

  • The solution above will give incorrect results if a row has a NULL Name value (if there is a NULL, the NULL will make @Names NULL after that row, and the next row will start over as an empty string again. Easily fixed with one of two solutions:
DECLARE @Names VARCHAR(8000) 
SELECT @Names = COALESCE(@Names + ', ', '') + Name
FROM People
WHERE Name IS NOT NULL

or:

DECLARE @Names VARCHAR(8000) 
SELECT @Names = COALESCE(@Names + ', ', '') + 
    ISNULL(Name, 'N/A')
FROM People

Depending on what behavior you want (the first option just filters *NULL*s out, the second option keeps them in the list with a marker message [replace 'N/A' with whatever is appropriate for you]).

share|improve this answer
11  
To be clear, coalesce has nothing to do with creating the list, it just makes sure that NULL values are not included. – Graeme Perrow Feb 13 '09 at 12:02
8  
@Graeme Perrow It doesn't exclude NULL values (a WHERE is required for that -- this will lose results if one of the input values is NULL), and it is required in this approach because: NULL + non-NULL -> NULL and non-NULL + NULL -> NULL; also @Name is NULL by default and, in fact, that property is used as an implicit sentinel here to determine if a ', ' should be added or not. – user166390 Aug 15 '10 at 18:57
1  
That's cute, thanks. – Ben Challenor Jan 15 '11 at 2:54
2  
@krubo No, the problem is that @Names = @Names + *anything* will be null because @Names is null upon declaration. The COALESCE resolves both null Name values and the initial null @Names value. – Kirk Broadhurst Aug 25 '11 at 4:34
12  
Please note that this method of concatenation relies on SQL Server executing the query with a particular plan. I have been caught out using this method (with the addition of an ORDER BY). When it was dealing with a small number of rows it worked fine but with more data SQL Server chose a different plan which resulted in selecting the first item with no concatenation whatsoever. See this article by Anith Sen. – fbarber Apr 26 '12 at 2:18
show 3 more comments

One method not yet shown via the XML data() command in MS SQL Server is:

Assume table called NameList with one column called FName,

select FName + ', ' as 'data()' 
from NameList 
for xml path('')

returns: "Peter, Paul, Mary, ".

Only the extra comma must be dealt with.

share|improve this answer
sweet as i was trying to get a lot of data 95K rows to be exact and this method works perfectly :) – melaos May 25 '11 at 8:00
holy s**t thats amazing! When executed on its own, as in your example the result is formatted as a hyperlink, that when clicked (in SSMS) opens a new window containing the data, but when used as part of a larger query it just appears as a string. Is it a string? or is it xml that i need to treat differently in the application that will be using this data? – Ben Sep 7 '12 at 15:56

In SQL Server 2005 ...

SELECT Stuff(
  (SELECT N', ' + Name FROM Names FOR XML PATH(''),TYPE)
  .value('text()[1]','nvarchar(max)'),1,2,N'')
share|improve this answer
Good use of the STUFF function to nix the leading two characters. – David Aug 11 '11 at 23:12
4  
Wow 20105.. Microsoft are really getting excited with these version numbers :P – Daniel Upton Sep 12 '11 at 15:06
This is great - really nice example. I've been using TVF's to accomplish this in most cases.. this works great! – Matthew M. Aug 29 '12 at 14:42
+1, Sublime, I love it >;-) – smirkingman Apr 7 at 15:10

In MySQL there is a function, GROUP_CONCAT(), which allows you to concatenate the values from multiple rows. Example:

SELECT 1 AS a, GROUP_CONCAT(name ORDER BY name ASC SEPARATOR ', ') AS people 
FROM users 
WHERE id IN (1,2,3) 
GROUP BY a
share|improve this answer
1  
Used to love this one, have not seen a alternative to this function with any other Db yet! – Binoj Antony Jun 18 '09 at 6:05
Sweet! Saved me a ton of manual work :) – Dave Stewart Aug 14 '12 at 13:49
Exactly what I was looking for, thanks! – Zar Nov 27 '12 at 15:51
Damn, I've read two books on SQL and didn't find any mention of this function... Thx a lot! – Yevgen May 5 at 4:49

Oracle 11g Release 2 supports the LISTAGG function. Documentation here.

COLUMN employees FORMAT A50

SELECT deptno, LISTAGG(ename, ',') WITHIN GROUP (ORDER BY ename) AS employees
FROM   emp
GROUP BY deptno;

    DEPTNO EMPLOYEES
---------- --------------------------------------------------
        10 CLARK,KING,MILLER
        20 ADAMS,FORD,JONES,SCOTT,SMITH
        30 ALLEN,BLAKE,JAMES,MARTIN,TURNER,WARD

3 rows selected.

Warning

Be careful implementing this function if there is possibility of the resulting string going over 4000 characters. It will throw an exception. If that's the case then you need to either handle the exception or roll your own function that prevents the joined string from going over 4000 characters.

share|improve this answer

In SQL Server 2005 and later, use the query below to concatenate the rows.


declare @t table
(
    Id int,
    Name varchar(10)
)
insert into @t
select 1,'a' union all
select 1,'b' union all
select 2,'c' union all
select 2,'d' 

select ID,
stuff(
(
    select ','+ [Name] from @t where Id = t.Id for XML path('')
),1,1,'') 
from (select distinct ID from @t )t

share|improve this answer
Excellnet! Thanks! – Chaki_Black yesterday

I don't have access to a SQL Server at home, so I'm guess at the syntax here, but it's more or less:

DECLARE @names VARCHAR(500)

SELECT @names = @names + ' ' + Name
FROM Names
share|improve this answer
2  
You'd need to init @names to something non-null, otherwise you will get NULL throughout; you'd also need to handle the delimiter (including the unnecessary one) – Marc Gravell Oct 12 '08 at 9:10
the only problem with this approach (which i use all the time) is that you can't embed it – ekkis Nov 23 '12 at 22:22

Using XML helped me in getting rows separated with commas. For the extra comma we can use the replace function of SQL Server. Instead of adding a comma, use of the AS 'data()' will concatenate the rows with spaces, which later can be replaced with commas as the syntax written below.

REPLACE(
        (select FName AS 'data()'  from NameList  for xml path(''))
         , ' ', ', ') 
share|improve this answer
1  
This is the best answer here in my opinon. The use of declare variable is no good when you need to join in another table, and this is nice and short. Good work. – David Roussel Jun 2 '11 at 16:22
2  
that's not working good if FName data has spaces already, for example "My Name" – binball Jun 8 '11 at 15:16
DECLARE @Names VARCHAR(8000)
SELECT @name = ''
SELECT @Names = @Names + ',' + Names FROM People
SELECT SUBSTRING(2, @Names, 7998)

This puts the stray comma at the beginning.

However, if you need other columns, or to CSV a child table you need to wrap this in a scalar user defined field (UDF).

You can use XML path as a correlated subquery in the SELECT clause too (but I'd have to wait until I go back to work because Google doesn't do work stuff at home :-)

share|improve this answer

Postgres arrays are awesome. Example:

Create some test data:

postgres=# \c test
You are now connected to database "test" as user "hgimenez".
test=# create table names (name text);
CREATE TABLE                                      
test=# insert into names (name) values ('Peter'), ('Paul'), ('Mary');                                                          
INSERT 0 3
test=# select * from names;
 name  
-------
 Peter
 Paul
 Mary
(3 rows)

Aggregate them in an array:

test=# select array_agg(name) from names;
 array_agg     
------------------- 
 {Peter,Paul,Mary}
(1 row)

Convert the array to a comma delimited string:

test=# select array_to_string(array_agg(name), ', ') from names;
 array_to_string
-------------------
 Peter, Paul, Mary
(1 row)

DONE

share|improve this answer

A ready-to-use solution, with no extra commas:

select substring(
        (select ', '+Name AS 'data()' from Names for xml path(''))
       ,3, 255) as "MyList"

An empty list will result in NULL value. Usually you will insert the list into a table column or program variable: adjust the 255 max length to your need.

(Diwakar and Jens Frandsen provided good answers, but need improvement.)

share|improve this answer

If you want to deal with nulls you can do it by adding a where clause or add another COALESCE around the first one.

DECLARE @Names VARCHAR(8000) 
SELECT @Names = COALESCE(COALESCE(@Names + ', ', '') + Name, @Names) FROM People
share|improve this answer

How about this:

   ISNULL(SUBSTRING(REPLACE((select ',' FName as 'data()' from NameList for xml path('')), ' ,',', '), 2, 300), '') 'MyList'

Where the "300" could be any width taking into account the max number of items you think will show up.

share|improve this answer

I usually use select like this to concatenate strings in SQL Server:

with lines as 
( 
  select 
    row_number() over(order by id) id, -- id is a line id
    line -- line of text.
  from
    source -- line source
), 
result_lines as 
( 
  select 
    id, 
    cast(line as nvarchar(max)) line 
  from 
    lines 
  where 
    id = 1 
  union all 
  select 
    l.id, 
    cast(r.line + N', ' + l.line as nvarchar(max))
  from 
    lines l 
    inner join 
    result_lines r 
    on 
      l.id = r.id + 1 
) 
select top 1 
  line
from
  result_lines
order by
  id desc
share|improve this answer

I really liked ellegancy of Dana's answer. Just wanted to make it complete.

DECLARE @names VARCHAR(MAX)
SET @names = ''

SELECT @names = @names + ', ' + Name FROM Names 

-- Deleting last two symbols (', ')
SET @sSql = LEFT(@sSql, LEN(@sSql) - 1)
share|improve this answer

In Oracle, it is wm_concat. I believe this function is available in the 10g release and higher.

share|improve this answer

Starting with PostgreSQL 9.0 this is quite simple:

select string_agg(name, ',') 
from names;

In versions before 9.0 array_agg() can be used as shown by hgmnz

share|improve this answer
To do this with columns that are not of type text, you need to add a type cast: SELECT string_agg(non_text_type::text, ',') FROM table – Torben Kohlmeier May 17 at 12:05
@TorbenKohlmeier: you only need that for non-character columns (e.g. integer, decimal). It works just fine for varchar or char – a_horse_with_no_name May 17 at 12:11
Oh, right, that's what I meant actually :D – Torben Kohlmeier May 18 at 11:07

One way you could do it in SQL Server would be to return the table content as XML (for XML raw), convert the result to a string and then replace the tags with ", ".

share|improve this answer

A recursive CTE solution was suggested, but no code provided. The code below is an example of a recursive CTE -- note that although the results match the question, the data doesn't quite match the given description, as I assume that you really want to be doing this on groups of rows, not all rows in the table. Changing it to match all rows in the table is left as an exercise for the reader.

;with basetable as 
(   SELECT id, CAST(name as varchar(max))name, 
        ROW_NUMBER() OVER(Partition By id     order by seq) rw, 
        COUNT(*) OVER (Partition By id) recs 
FROM (VALUES (1, 'Johnny', 1), (1,'M', 2), 
                  (2,'Bill', 1), (2, 'S.', 4), (2, 'Preston', 5), (2, 'Esq.', 6),
        (3, 'Ted', 1), (3,'Theodore', 2), (3,'Logan', 3),
                  (4, 'Peter', 1), (4,'Paul', 2), (4,'Mary', 3)

           )g(id, name, seq)
),
rCTE as (
    SELECT recs, id, name, rw from basetable where rw=1
    UNION ALL
    SELECT b.recs, r.ID, r.name +', '+ b.name name, r.rw+1
    FROM basetable b
         inner join rCTE r
    on b.id = r.id and b.rw = r.rw+1
)
SELECT name FROM rCTE
WHERE recs = rw and ID=4
share|improve this answer

There are couple more ways in oracle,

    create table name
    (first_name varchar2(30));

    insert into name values ('Peter');
    insert into name values ('Paul');
    insert into name values ('Mary');

    Solution 1:
    select substr(max(sys_connect_by_path (first_name, ',')),2) from (select rownum r, first_name from name ) n start with r=1 connect by prior r+1=r
    o/p=> Peter,Paul,Mary

    Soution 2:
    select  rtrim(xmlagg (xmlelement (e, first_name || ',')).extract ('//text()'), ',') first_name from name
    o/p=> Peter,Paul,Mary
share|improve this answer

For Oracle DBs, see this question: How can multiple rows be concatenated into one in Oracle without creating a stored procedure?

The best answer appears to be by @Emmanuel, using the built-in LISTAGG() function, available in Oracle 11g Release 2 and later.

SELECT question_id,
   LISTAGG(element_id, ',') WITHIN GROUP (ORDER BY element_id)
FROM YOUR_TABLE;
GROUP BY question_id

as @user762952 pointed out, and according to Oracle's documentation http://www.oracle-base.com/articles/misc/string-aggregation-techniques.php, the WM_CONCAT() function is also an option. It seems stable, but Oracle explicitly recommends against using it for any application SQL, so use at your own risk.

Other than that, you will have to write your own function; the Oracle document above has a guide on how to do that.

share|improve this answer

If we using the latest version of SQL server(2012),it has introduces new function CONCATE()

share|improve this answer
2  
The new concat() function is not an aggregate function. It's a replacement for SQL Servers non-standard + operator. – a_horse_with_no_name Nov 16 '12 at 23:16

Depends on your database vendor. MySQL has concat_ws. MS SQL Server expects you to do it in your client application.

Update: you could also do it in an external procedure or UDF, perhaps by using a cursor or calling out to CLR code.

share|improve this answer
@Joel, the funciton in MySQL is CONCAT_WS(), but it's only useful for 1 row within a result. – Darryl Hein Oct 12 '08 at 0:11

In mssql 2005 and later you can use a recursive CTE

share|improve this answer
3  
No code was provided, and better solutions were posted before this. – David Manheim Jun 12 '12 at 20:29

protected by Community Aug 2 '11 at 14:32

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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