Hi,
I'm trying to get the column values to be exported to file with comma separated
select ename from emp
Ename
ADAMS
ALLEN
BLAKE
CLARK
FORD
I want to add comma to the rows have only values
like
Ename
ADAMS,
ALLEN,
BLAKE,
CLARK,
FORD
I tried with concat ',' it is adding the comma to last row value also ,which I do not want.
ANy inputs are appreciated.
Thanks,
Brk