PostgreSQL combine les valeurs dans un champ

SELECT movie, string_agg(actor, ', ') AS actor_list
FROM   tbl
GROUP  BY 1;
Fine Falcon