Open
Description
Is your feature request related to a problem or challenge?
I'd like to be able to use the equivalent of the postgres function STRING_AGG
.
Describe the solution you'd like
select string_agg(first_name, ',') as names from tbl group by last_name
Describe alternatives you've considered
No response
Additional context
a few references on string_agg
https://www.postgresqltutorial.com/postgresql-aggregate-functions/postgresql-string_agg-function/
https://www.postgresql.org/docs/9.0/functions-aggregate.html