Click here to Skip to main content
15,888,340 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
I have a countries table

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


and result is
Albania,Andorra,Antigua
this query works on oracle database.
but i does not work on SQLITE
please explain me
How can I combine multiple rows into a comma-delimited list in SQLITE

[Edit]Code is wrapped in "pre" tags[/Edit]
Posted
Updated 13-Jan-11 0:50am
v2

1 solution

You already got an answer on sqlite.org :
http://www.sqlite.org/lang_aggfunc.html#groupconcat[^]

Cheers
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900