Answers for "oracle sql get value from several rows and concatenate strings"

SQL
0

oracle sql get value from several rows and concatenate strings

SELECT pid, LISTAGG(Desc, ' ') WITHIN GROUP (ORDER BY seq) AS description
FROM B GROUP BY pid;
Posted by: Guest on April-20-2021

Code answers related to "oracle sql get value from several rows and concatenate strings"

Code answers related to "SQL"

Browse Popular Code Answers by Language