On 1 Sep 2018, at 11:03pm, Zsbán Ambrus <[email protected]> wrote: > Would you consider adding an aggregate function "string_agg" which is > a synonym for the "group_concat" function but takes only two > arguments?
Could you look up the definition of the existing function on <https://sqlite.org/lang_aggfunc.html#groupconcat> and describe that again ? The existing function already has a two-argument form. If you just want to concatenate two strings together you can use the "||" operator: SELECT a||b from MyTable. Simon. _______________________________________________ sqlite-users mailing list [email protected] http://mailinglists.sqlite.org/cgi-bin/mailman/listinfo/sqlite-users

