How do I get:
id Name Value
1 A 4
1 B 8
2 C 9
to
id Column
1 A:4, B:8
2 C:9
|
How do I get:
to
|
||||
|
No CURSOR, WHILE loop, or User-Defined Function needed. Just need to be creative with FOR XML and PATH. [Note: This solution only works on SQL 2005 and later. Original question didn't specify the version in use.]
|
|||||||||||||||||
|
|
using XML path will not perfectly concatenate as you might expect... it will replace "&" with "&" and will also mess with "<" and ">" ...maybe a few other things, not sure... I came across a workaround for this... you need to replace:
with:
...or NVARCHAR(MAX) if thats what youre using. why the hell doesnt SQL have a concatenate aggregate function? this is a PITA. |
|||
|
|
I ran into a couple of problems when I tried converting Kevin Fairchild's suggestion to work with strings containing spaces and special XML characters (&, <, >) which were encoded. The final version of my code (which doesn't answer the original question but may be useful to someone) looks like this:
Rather than using a space as a delimiter and replacing all the spaces with commas, it just pre-pends a comma and space to each value then uses The XML encoding is taken care of automatically by using the TYPE directive. |
||||
|
|
|
SQL Server 2005 and later allow you to create your own custom aggregate functions, including for things like concatenation- see the sample at the bottom of the linked article. |
|||
|
|
Just to add to what Cade said, this is usually a front-end display thing and should therefore be handled there. I know that sometimes it's easier to write something 100% in SQL for things like file export or other "SQL only" solutions, but most of the times this concatenation should be handled in your display layer. |
||||
|
|
|
This kind of question is asked here very often, and the solution is going to depend a lot on the underlying requirements: http://stackoverflow.com/search?q=sql+pivot and http://stackoverflow.com/search?q=sql+concatenate Typically, there is no SQL-only way to do this without either dynamic sql, a user-defined function, or a cursor. |
|||
|
|
|
Don't need a cursor... a while loop is sufficient.
|
|||
|
|
|
Another option using Sql Server 2005 and above
|
|||
|
|
|
I've looked for ways to do this before, and besides writing a stored proc, there isn't an easy way to do it. I resort to writing a script or using an ETL tool like Talend to do this. |
|||
|
|
|
|||
|
|
|
This is just an addition to Kevin Fairchild's post (very clever by the way). I would have added it as a comment, but I don't have enough points yet :) I was using this idea for a view I was working on, however the items I was concatinating contained spaces. So I modified the code slightly to not use spaces as delimiters. Again thanks for the cool workaround Kevin!
|
|||
|
|
|
In Oracle you can use LISTAGG aggregate function. An example would be:
Would result in:
|
|||
GROUP_CONCAT()aggregate function, but solving it on Microsoft SQL Server is more awkward. See the following SO question for help: "How to get multiple records against one record based on relation?" – Bill Karwin Nov 7 '08 at 19:21