I have a use-case for joining a selection of strings together for insertion into another model. The case is for updating a string used for searching from a collection of values from a recursive query.
Postgres has a function called string_agg that looks like it can do this really easily.
I have a use-case for joining a selection of strings together for insertion into another model. The case is for updating a string used for searching from a collection of values from a recursive query.
Postgres has a function called
string_agg
that looks like it can do this really easily.