Right now, I have a SQL Query like this one:

SELECT X, Y FROM POINTS

It returns results like so:

X    Y
----------
12   3
15   2
18   12
20   29

I'd like to return results all in one row, like this (suitable for using in an HTML <AREA> tag):

XYLIST
----------
12,3,15,2,18,12,20,29

Is there a way to do this using just SQL?

link|improve this question

If you want your application to scale, it would be better to do this kind of thing outside the database. The database will almost always be your bottleneck. – Joseph Bui Oct 7 '08 at 19:51
I wonder why the good answer went away? – Lance Roberts Oct 7 '08 at 20:01
@Joseph Bui - Believe me, I know. Unfortunately the project lead insists I do it this way. – Joshua Carmody Oct 7 '08 at 20:27
feedback

4 Answers

up vote 7 down vote accepted
DECLARE @XYList varchar(MAX)
SET @XYList = ''

SELECT @XYList = @XYList + CONVERT(varchar, X) + ',' + CONVERT(varchar, Y) + ','
FROM POINTS

-- Remove last comma
SELECT LEFT(@XYList, LEN(@XYList) - 1)
link|improve this answer
feedback

Thanks for the quick and helpful answers guys!

I just found another fast way to do this too:

SELECT STUFF((SELECT ',' + X + ',' + Y FROM Points FOR XML PATH('')), 1, 1, '') AS XYList

Credit goes to this guy:

http://geekswithblogs.net/mnf/archive/2007/10/02/t-sql-user-defined-function-to-concatenate-column-to-csv-string.aspx

link|improve this answer
feedback

Using the COALESCE trick, you don't have to worry about the trailing comma:

DECLARE @XYList AS varchar(MAX) -- Leave as NULL

SELECT @XYList = COALESCE(@XYList + ',', '') + CONVERT(varchar, X) + ',' + CONVERT(varchar, Y)
FROM POINTS
link|improve this answer
feedback
DECLARE @s VarChar(8000)
SET @s = ''

SELECT @s = @s + ',' + CAST(X AS VarChar) + ',' + CAST(Y AS VarChar) 
FROM POINTS

SELECT @s

Just get rid of the leading comma

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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