Posts by Lucas Mouta • 1 point
1 post
-
0
votes2
answers105
viewsA: Concatenate varchar2 PLSQL
You can group and use a listgg, for example: select t1.ID , listagg(t2.nome, ',') within group( order by t2.nome) as nome from tabela1 t1 left join tabela2 t2 on t1.id_t2 = t2.id group by t1.ID ;…