create table countries ( country_name varchar2 (100)); add some records insert into countries values ('Albania'); insert into countries values ('Andorra'); insert into countries values ('Antigua'); query for concatenate records SELECT SUBSTR (SYS_CONNECT_BY_PATH (country_name , ','), 2) csv FROM (SELECT country_name , ROW_NUMBER () OVER (ORDER BY country_name ) rn, COUNT (*) OVER () cnt FROM countries) WHERE rn = cnt START WITH rn = 1 CONNECT BY rn = PRIOR rn +1;CSV
var
This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)