vote up 5 vote down star
3

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
flag

7 Answers

vote up 13 vote down check

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.]

CREATE TABLE #YourTable ([ID] INT, [Name] CHAR(1), [Value] INT)

INSERT INTO #YourTable ([ID],[Name],[Value]) VALUES (1,'A',4)
INSERT INTO #YourTable ([ID],[Name],[Value]) VALUES (1,'B',8)
INSERT INTO #YourTable ([ID],[Name],[Value]) VALUES (2,'C',9)

SELECT 
      [ID]
    , REPLACE(RTRIM((SELECT [Name] + ':' + CAST([Value] AS VARCHAR(MAX)) + ' ' FROM #YourTable WHERE (ID = Results.ID) FOR XML PATH (''))),' ',', ') AS NameValues
FROM #YourTable Results
GROUP BY ID

DROP TABLE #YourTable

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

link|flag
why would one nolock a temp table? – David B Nov 7 '08 at 19:33
Force of habit. Suppose I can get rid of that. lol – Kevin Fairchild Nov 7 '08 at 19:34
Seriously (I know I just commented a second ago)... but that's brilliant. This is the first time in a LONG time I've learned something in SQL from someone else. – Timothy Khouri Nov 7 '08 at 19:39
lol. Thanks, Timothy. I'm a sucker for puzzles. Especially when folks say it can't be done :) – Kevin Fairchild Nov 7 '08 at 19:44
This is the coolest SQL thing I've seen in my life. Any idea if it's "fast" for large data sets? It doesn't start to crawl like a cursor would or anything, does it? I wish more people would vote this craziness up. – mbrierst Nov 7 '08 at 21:27
show 5 more comments
vote up 0 vote down

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.

link|flag
vote up 0 vote down

Don't need a cursor... a while loop is sufficient.

------------------------------
-- Setup
------------------------------

DECLARE @Source TABLE
(
  id int,
  Name varchar(30),
  Value int
)

DECLARE @Target TABLE
(
  id int,
  Result varchar(max) 
)


INSERT INTO @Source(id, Name, Value) SELECT 1, 'A', 4
INSERT INTO @Source(id, Name, Value) SELECT 1, 'B', 8
INSERT INTO @Source(id, Name, Value) SELECT 2, 'C', 9


------------------------------
-- Technique
------------------------------

INSERT INTO @Target (id)
SELECT id
FROM @Source
GROUP BY id

DECLARE @id int, @Result varchar(max)
SET @id = (SELECT MIN(id) FROM @Target)

WHILE @id is not null
BEGIN
  SET @Result = null

  SELECT @Result =
    CASE
      WHEN @Result is null
      THEN ''
      ELSE @Result + ', '
    END + s.Name + ':' + convert(varchar(30),s.Value)
  FROM @Source s
  WHERE id = @id

  UPDATE @Target
  SET Result = @Result
  WHERE id = @id

  SET @id = (SELECT MIN(id) FROM @Target WHERE @id < id)
END

SELECT *
FROM @Target
link|flag
vote up -1 vote down

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.

link|flag
vote up 1 vote down

This type of problem is solved easily on MySQL with its 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?"

link|flag
vote up 2 vote down

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.

link|flag
vote up 0 vote down

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.

link|flag

Your Answer

Get an OpenID
or

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