Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicates:
Implode type function in SQL Server 2000?
Concatenate row values T-SQL

I have a view which I'm querying that looks like this:

BuildingName    PollNumber
------------    ----------
Foo Centre      12        
Foo Centre      13
Foo Centre      14
Bar Hall        15
Bar Hall        16
Baz School      17

I need to write a query that groups BuildingNames together and displays a list of PollNumbers like this:

BuildingName    PollNumbers
------------    -----------
Foo Centre      12, 13, 14
Bar Hall        15, 16
Baz School      17

How can I do this in T-SQL? I'd rather not resort to writing a stored procedure for this, since it seems like overkill, but I'm not exactly a database person. It seems like an aggregate function like SUM() or AVG() is what I need, but I don't know if T-SQL has one. I'm using SQL Server 2005.

share|improve this question
Yes, this question has been asked multiple times on SO. stackoverflow.com/questions/1874966/… or stackoverflow.com/questions/3121079/… – Lamak Feb 17 '11 at 15:53
Ah, my bad. Chalk this up as a case of not using the right search keywords then. :) Voting to close. – Brant Bobby Feb 17 '11 at 15:58
answered many times... but watch out, not all FOR XML PATH concatenations implementations will properly handle the XML special characters (<, &, >, etc) like my sample code (below) will... – KM. Feb 17 '11 at 16:02
Also a duplicate of: stackoverflow.com/questions/273238/… – Danny Varod Mar 7 at 12:48

marked as duplicate by Powerlord, OMG Ponies, Damien_The_Unbeliever, Brant Bobby, Christopher Feb 17 '11 at 16:40

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

3 Answers

up vote 29 down vote accepted

no, for SQL Server 2005 and up, you need to do something like this:

--Concatenation with FOR XML and eleminating control/encoded character expansion "& < >"
set nocount on;
declare @YourTable table (RowID int, HeaderValue int, ChildValue varchar(5))
insert into @YourTable VALUES (1,1,'CCC')
insert into @YourTable VALUES (2,2,'B<&>B')
insert into @YourTable VALUES (3,2,'AAA')
insert into @YourTable VALUES (4,3,'<br>')
insert into @YourTable VALUES (5,3,'A & Z')
set nocount off
SELECT
    t1.HeaderValue
        ,STUFF(
                   (SELECT
                        ', ' + t2.ChildValue
                        FROM @YourTable t2
                        WHERE t1.HeaderValue=t2.HeaderValue
                        ORDER BY t2.ChildValue
                        FOR XML PATH(''), TYPE
                   ).value('.','varchar(max)')
                   ,1,2, ''
              ) AS ChildValues
    FROM @YourTable t1
    GROUP BY t1.HeaderValue

OUTPUT:

HeaderValue ChildValues
----------- -------------------
1           CCC
2           AAA, B<&>B
3           <br>, A & Z

(3 row(s) affected)

Also, watch out, not all FOR XML PATH concatenations will properly handle XML special characters like my above example will.

share|improve this answer

There is no built in function in Sql Server, but it can be achieved by writing a user defined aggregate. This article mentions such a function as part of the SQL Server samples: http://msdn.microsoft.com/en-us/library/ms182741.aspx

share|improve this answer
2  
+1 this is much more helpful for me than the chosen answer. It's exactly what I need. – Isaac Fife Sep 21 '12 at 21:39

If I was doing this in C#, I'd use LINQ-to-Entities and a LINQ query. Its database independent, and it will be fast (Microsoft swears that most of the T-SQL generated by queries from LINQ will be better than hand written queries).

Once you get LINQ to Entities set up, R&D becomes a lot easier. If you want to get up to speed quickly, I'd recommend following along some tutorial videos (Google "LINQ tutorial videos").

share|improve this answer
This is for a Reporting Services 2005 report, so C# and EF are out. If I had access to string.Join() this would be a cinch. :( – Brant Bobby Feb 17 '11 at 15:54

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