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
|
3
|
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. Originally question didn't specify the version in use.]
UPDATE: I'm sure there's a better way to get around the string manipulation slight-of-hand going on there, but I can't think of it at the moment. If I use ', ' as the deliminator, it's going to end with a comma. My cheesy solution for this is to use a comma as the deliminator. It'll still end with the deliminator (space), but RTRIM gets rid of it. Then I use REPLACE to change it from a single space to a comma and then a space. Seems a bit obtuse of a solution, but it works for the sample data :-P |
||||||||||
|
|
|
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. |
||
|
|
|
|
Don't need a cursor... a while loop is sufficient.
|
||
|
|
|
|
Just to add to what Cade said, this is usually a front-end display thing and should therefor 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 type of problem is solved easily on MySQL with its See the following SO question for help: "How to get multiple records against one record based on relation?" |
||
|
|
|
|
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. |
||
|
|
|
|
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. |
||
|
|