I need to get the value from one query as a single row, separated by one separator, chosen but me, but it's a little tricky.
So, I have:
select employer from employers
I will return:
(line1)    Anne
(line2)    Sue
(line3)    Villy
(line4)    John
(nth line) Marry
I need to have the result as this:
'Anne','Sue','Villy','John','Marry'
Or at least:
 Anne^Sue^Villy^John^Marry
Any hints? Thanks,
 
     
     
    