PostgreSQL - Aggregate Functions and GROUP BY
Given the table
fruits with rows: ('apple'), ('banana'), ('cherry'), what is the result of this query?SELECT STRING_AGG(name, '; ' ORDER BY name) FROM fruits;
