Support

Account

Home Forums General Issues Using values from one field group in another Reply To: Using values from one field group in another

  • For Postgres use string_agg()

    select id,
    string_agg(name, ‘,’ order by name) as name_list
    from the_table
    group by id
    order by id;

    With Regards,
    Protar