Oracle
 sql >> Database >  >> RDS >> Oracle

Elimina i duplicati utilizzando la funzione Oracle LISTAGG

Poiché le risposte collegate nel commento non forniscono la mia soluzione, la posterò comunque.

Userò solo table_b con dati fittizi per mostrare il concetto, puoi facilmente aggiungere il tuo join ecc.:

with table_b as ( -- dummy data
 select 'name'||mod(level,3) name
        ,mod(level,3) id
   from dual
  connect by level < 10
 union all
 select 'name'||mod(level,2) name
        ,mod(level,3) id
   from dual
  connect by level < 10
)
select id
      ,RTRIM (
              XMLAGG (
                      XMLELEMENT (E,XMLATTRIBUTES (name|| ',' AS "Seg")
                      )
                     ORDER BY name ASC
              ).EXTRACT ('./E[not(@Seg = preceding-sibling::E/@Seg)]/@Seg'),
              ','
             ) AS "Product Name"
       ,LISTAGG(b.name, ',') WITHIN GROUP (ORDER BY b.name) AS "Product Name with dups"
  from table_b b
group by id;

(Idea tratta da https://forums.oracle.com/forums/thread.jspa?messageID=9634767&tstart=0#9943367)