S sanjus Member Jan 19, 2011 #1 I want to take a column from a table like this: select * from Color; Color ------ red orange blue green And return a resultset like this: Colors ------------------------- red,orange,blue,green
I want to take a column from a table like this: select * from Color; Color ------ red orange blue green And return a resultset like this: Colors ------------------------- red,orange,blue,green
medu Member Jan 20, 2011 #2 you can't do that without using cursors and imho this is not something you'll want to do in Progress SQL... why don't you do that on the client side?
you can't do that without using cursors and imho this is not something you'll want to do in Progress SQL... why don't you do that on the client side?
S sanjus Member Jan 21, 2011 #3 Thanks m.edu. That's what I ended doing - using a stored procedure (for cursor processing) which updates a view with the transposed record set.
Thanks m.edu. That's what I ended doing - using a stored procedure (for cursor processing) which updates a view with the transposed record set.