Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SQL

how to combine diff colmun value using group by postgres

SELECT movie, string_agg(actor, ', ' ORDER BY actor) AS actor_list
FROM   tbl
GROUP  BY 1;
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #combine #diff #colmun #group #postgres
ADD COMMENT
Topic
Name
4+6 =