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

Oracle SELECT QUERY for et til mange forhold mellem to tabeller

En metode bruger betinget aggregering:

select t1.PERSON_ID, t1.FIRST_NAME, t1.MIDDLE_NAME, t1.LAST_NAME, 
       max(case when t2.phone_type = 'BUSINESS' then t2.PHONE_NUMBER end) as business,
       max(case when t2.phone_type = 'PERSONAL' then t2.PHONE_NUMBER end) as personal,
       max(case when t2.phone_type = 'HOME' then t2.PHONE_NUMBER end) as home
from Table1 t1 inner join
     Table2 t2
     on t2.PERSON_ID = t1.PERSON_ID
where t2.PHONE_TYPE in ('BUSINESS', 'PERSONAL', 'HOME') 
group by t1.PERSON_ID, t1.FIRST_NAME, t1.MIDDLE_NAME, t1.LAST_NAME;


  1. Slip og genskab automatisk aktuelle indekser

  2. Fejl med MySql under pakkeinstallation

  3. Fix "Kan ikke installere i Homebrew på ARM-processor i Intels standardpræfiks (/usr/local)!"

  4. Hvordan eksporteres resultatet af SQL-forespørgsel til csv-stil formateret streng, som senere vil blive gemt i clob i Oracle?