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

Jak dołączyć do dwóch stołów, aby uzyskać następujący wynik?

Chcesz wszystko w drugiej tabeli, a następnie pasujące wiersze lub nową group0 w pierwszej tabeli.

Myślę, że to jest join logika:

select coalesce(t1.group0, t2.group0) as group0, 
       coalesce(t1.group1, t2.group1) as group1,
       t1.sum_a, t2.sum_b
from table1 t1 full outer join
     table2 t2
     on t1.group0 = t2.group0 
where (t2.group0 is not null and (t1.group1 = t2.group1 or t1.group0 is null)) or
      t2.group0 is null;

Ta logika jest łatwiejsza dzięki union all :

select t2.group0, t2.group1, t1.sum_a, t2.sum_b
from table2 t2 left join
     table1 t1
     on t2.group0 = t1.group0 and t2.group1 = t1.group1
union all
select t1.group1, t1.group1, t1.suma, 0
from table1
where not exists (select 1 from table2 t2 where t2.group0 = t1.group0);

EDYCJA:

Zmodyfikowane pytanie różni się znacznie od oryginału. To jest proste full outer join :

select coalesce(t1.group0, t2.group0) as group0, 
       coalesce(t1.group1, t2.group1) as group1,
       coalesce(t1.sum_a, 0) as sum_a, coalesce(t2.sum_b, 0) as sum_b
from table1 t1 full outer join
     table2 t2
     on t1.group0 = t2.group0  and t1.group1 = t2.group1;



  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. Funkcja NULLIF() w Oracle

  2. Stałe w zapytaniu Oracle SQL

  3. Funkcja PL/SQL w Oracle nie widzi DBMS_AQ

  4. Znajdź wszystkie wartości nieliczbowe w kolumnie w Oracle

  5. Zbieraj statystyki dotyczące indeksu lub upuszczaj je?