vote up 1 vote down star

My table TEST has the following rows:

test    | 1
test    | 2
test    | 3

How I query it to get the following result?

test    | 1 - 2 - 3
flag

1  
You have a very low accept rate for questions that you ask. I think you should accept more answers and encourage us to answer your questions. – Raj More Nov 5 at 3:39
Please get in the habit of accepting the best answer provided, the one solving your problem. A "15% accept rate" on your user badge is really bad for your reputation. It's the right and polite thing to do on StackOverflow. See: meta.stackoverflow.com/questions/5234/… – marc_s Nov 5 at 5:54

2 Answers

vote up 1 vote down check

You can use the Coalesce function to sort you numbers in a list. Hopefully this gives you a start:

Declare @T as Table (Col1 varchar(35), Col2 int)

Insert into @T(Col1, Col2)
Select 'Test', 1

Insert into @T(Col1, Col2)
Select 'Test', 2

Insert into @T(Col1, Col2)
Select 'Test', 3


DECLARE @X varchar(200)

SELECT @X = COALESCE(@X + ' - ', '') + Cast(Col2 as varchar(5))
From @T

Select @X
link|flag
Can you query in one line in sql server 2005 query? – monkey_boys Nov 5 at 3:38
You would need to create a function to query the table for all col1 values. Then do something like this to use the function: Select Distinct dbo.Function_List(Col1) From testTable – Craig Bart Nov 5 at 3:46
vote up 1 vote down

Try:

SELECT x.column1,
       STUFF(SELECT ' - ' + t.column2
               FROM TEST t
              WHERE t.column1 = x.column1
           ORDER BY t.column1
            FOR XML PATH(''), 1, 1, '')
  FROM TEST x

Reference: STUFF

link|flag
can u use this data for example test | 1 test | 2 test | 3 – monkey_boys Nov 5 at 4:08
what about FOR XML PATH('') – monkey_boys Nov 5 at 7:56

Your Answer

Get an OpenID
or

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