Hi Igor,
I got this error message. I had 3.5.2 SQLite.
sqlite> select group_concat(appName) from CDB.appMapTable;
SQL error: no such function: group_concat
Any ideas what was the problem here.
Thanks,
JP



----- Original Message ----
From: Igor Tandetnik <[EMAIL PROTECTED]>
To: sqlite-users@sqlite.org
Sent: Friday, June 13, 2008 7:45:08 PM
Subject: Re: [sqlite] Display all the columns of the table in single line.

"Joanne Pham" <[EMAIL PROTECTED]>
wrote in message news:[EMAIL PROTECTED]
> I ran the following select :
> select appName from appMapTable
> but I would like all the appName return as single row and seperate by
> comma. Can we do that using sqlite commands.

select group_concat(appName) from appMapTable;

Igor Tandetnik 



_______________________________________________
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users



      
_______________________________________________
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to