List to comma separated string.
From below SQl query we can convert string to list.
select column_value val from table(sys.odcivarchar2list('a', 'b', 'c', 'd'));
IS there any similar method to convert a list to varchar, means any function ?
Note - I know using dbms_utility.table_to_comma.