vote up 2 vote down star

I have a result set in MS-SQL within a stored procedure, and lets say it has one VARCHAR column, but many rows. I want to create a comma separated string conataining all these values, Is there an easy way of doing this, or am I going to have to step through each result and build the string up manually?

Preferably I'd like to do this in the Stored Procedure itself.

flag

2 Answers

vote up 3 vote down check

Here is one way (using AdventureWorks2008 DB):

DECLARE @name varchar(255)
SET @name = NULL

select @Name = COALESCE(@Name + ',','') + LastName from Person.Person
Select @name

And here is another (for SQL 2005 onwards):

SELECT 
    LastName + ','
FROM 
    Person.Person
FOR XML PATH('')

In both cases you will need to remove the trailing comma ',' (can use STUFF() function)

link|flag
The way I just discovered by myself :D – Sekhat Nov 17 '08 at 13:52
vote up 1 vote down

This question has been asked a few times before:

http://stackoverflow.com/questions/122942/how-to-return-multiple-values-in-one-column-t-sql

link|flag

Your Answer

Get an OpenID
or

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