Alright, here is a little scoop of what I am trying to accomplish. I have a case statement in the select statement. Here is what I have...:
CASE pu.Group_Value
WHEN 1 THEN 'A'
WHEN 2 THEN 'B'
WHEN 3 then 'C'
WHEN 4 then 'D'
WHEN 5 then 'E'
WHEN 6 then 'F'
WHEN 7 then 'G'
END AS Groups,
The issue I am having is this case statement can have more than one return that comes back. What I need to do is be able to combine these into one. I end up having 7 rows coming back, but only need one row with all 7 letters in that rows column...
Thanks!