Oracle
 sql >> Base de données >  >> RDS >> Oracle

LISTAGG dans Oracle pour renvoyer des valeurs distinctes

19c et versions ultérieures :

select listagg(distinct the_column, ',') within group (order by the_column)
from the_table

18c et antérieur :

select listagg(the_column, ',') within group (order by the_column)
from (
   select distinct the_column 
   from the_table
) t

Si vous avez besoin de plus de colonnes, quelque chose comme ceci pourrait être ce que vous recherchez :

select col1, listagg(col2, ',') within group (order by col2)
from (
  select col1, 
         col2,
         row_number() over (partition by col1, col2 order by col1) as rn
  from foo
  order by col1,col2
)
where rn = 1
group by col1;