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?
|
Consider a database table holding names, with three rows:
Is there an easy way to turn this into a single string of |
|||||||||
|
|
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
Result I expected was:
I used the following T-SQL:
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:
|
|||||||||||||||
|
|
Use
Just some explanation (since this answer seems to get relatively regular views):
1) No need to initialize 2) No need to strip off an extra separator at the end.
or:
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]). |
|||||||||||||||||||||
|
|
One method not yet shown via the XML data() command in MS SQL Server is: Assume table called NameList with one column called FName,
returns: "Peter, Paul, Mary, ". Only the extra comma must be dealt with. |
|||||
|
|
In SQL Server 2005 ...
|
|||||||||||
|
|
In MySQL there is a function, GROUP_CONCAT(), which allows you to concatenate the values from multiple rows. Example:
|
|||||||||||
|
|
Oracle 11g Release 2 supports the LISTAGG function. Documentation here.
WarningBe 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. |
||||
|
|
|
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:
|
|||||||
|
|
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.
|
|||||||||
|
|
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
|
||||
|
|
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 :-) |
||||
|
|
|
Postgres arrays are awesome. Example: Create some test data:
Aggregate them in an array:
Convert the array to a comma delimited string:
DONE |
||||
|
|
|
A ready-to-use solution, with no extra commas:
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.) |
||||
|
|
|
If you want to deal with nulls you can do it by adding a where clause or add another COALESCE around the first one.
|
|||
|
|
|
How about this:
Where the "300" could be any width taking into account the max number of items you think will show up. |
|||
|
|
|
I usually use select like this to concatenate strings in SQL Server:
|
||||
|
|
|
I really liked ellegancy of Dana's answer. Just wanted to make it complete.
|
||||
|
|
|
In Oracle, it is |
||||
|
|
|
Starting with PostgreSQL 9.0 this is quite simple:
In versions before 9.0 |
|||||||
|
|
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 ", ". |
||||
|
|
|
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.
|
|||
|
|
|
There are couple more ways in oracle,
|
|||
|
|
|
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.
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. |
|||
|
|
|
If we using the latest version of SQL server(2012),it has introduces new function CONCATE() |
|||||
|
|
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. |
||||
|
|
In mssql 2005 and later you can use a recursive CTE |
|||||
|
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.