"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

Reply via email to