sql >> Database >  >> RDS >> Oracle

voorwaardelijke deelname aan orakel

Het volgende resultaat:

| TAB1_COL1 | TAB1_COL2 | LKP_COL3 |
|-----------|-----------|----------|
|        10 |       101 |       50 |
|        11 |       102 |       50 |
|        12 |       101 |    99.99 |
|        13 |       103 |       40 |
|        13 |       103 |       60 |
|        14 |       104 |      100 |
|        15 |       108 |       20 |
|        15 |       108 |       80 |
|        16 |       102 |    99.99 |

werd geproduceerd door deze zoekopdracht:

SELECT DISTINCT
      tab1.tab1_col1
    , tab1.tab1_col2
    , COALESCE(lkp1.lkp_col3, lkp2.lkp_col3, 99.99) "LKP_COL3"
FROM tab1
      LEFT JOIN lkp1
                  ON tab1.tab1_col1 = lkp1.lkp_col1
                        AND tab1.tab1_col2 = lkp1.lkp_col2
                        AND lkp1.lkp_col4 = 'PICK'
      LEFT JOIN lkp1 lkp2
                  ON tab1.tab1_col1 = lkp2.lkp_col1
                        AND lkp2.lkp_col4 = 'PICK'
ORDER BY
      tab1.tab1_col1
    , tab1.tab1_col2
;

DISTINCT is toegevoegd omdat de tweede linker (buitenste) join ongewenste herhalingen in de uitvoer produceert.

raadpleeg deze sqlfiddle




  1. Hoe importeer ik een CSV-bestand in een MySQL-tabel?

  2. Keuze opslagmotor:Aria

  3. Maximum aantal SQL-query's per pagina

  4. ORA-00933:SQL-opdracht is niet correct beëindigd tijdens het gebruik van pivot