postgresql combine values in one field

Solutions on MaxInterview for postgresql combine values in one field by the best coders in the world

showing results for - "postgresql combine values in one field"
Alessia
05 Jan 2017
1SELECT movie, string_agg(actor, ', ') AS actor_list
2FROM   tbl
3GROUP  BY 1;