Oracle
 sql >> Baza danych >  >> RDS >> Oracle

LITAGG w Oracle, aby zwrócić różne wartości

19c i nowsze:

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

18c i starsze:

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

Jeśli potrzebujesz więcej kolumn, coś takiego może być tym, czego szukasz:

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;


  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. Czy istnieje jakaś funkcja w Oracle podobna do group_concat w mysql?

  2. Warunkowa klauzula WHERE z instrukcją CASE w Oracle

  3. Wybierz wartość elementu xml w Oracle

  4. Co to jest Oracle SQL i PL/SQL? Wszystko, co powinien wiedzieć początkujący

  5. CURRENT_DATE Funkcja w Oracle