Answers for "concat two columns in postgresql"

SQL
0

postgresql combine values in one field

SELECT movie, string_agg(actor, ', ') AS actor_list
FROM   tbl
GROUP  BY 1;
Posted by: Guest on April-06-2020
0

postrgesql concat 2 columns divided by ;

SELECT
   'Concatenation' || ' ' || 'Operator' AS result_string;
  
Code language: SQL (Structured Query Language) (sql)
Posted by: Guest on April-28-2021

Code answers related to "concat two columns in postgresql"

Code answers related to "SQL"

Browse Popular Code Answers by Language