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

zapytanie Oracle z kilkoma warunkami filtrowania

Możesz go (trochę) skompresować za pomocą:

SELECT *                                       --- irrelevant to the question:
FROM table1 JOIN table2                        --- use the explicit JOIN syntax
             ON table1.id1 = table2.id2        --- not the implicit join with the
---table1,table2 where table1.id1 = table2.id2 --- WHERE syntax (removed)
WHERE
--- filters
  AND (table1.col2, table2.col2) IN
        (  ('value_11', 'value_21'),
           ('value_12', 'value_22'),
           ('value_13', 'value_23'),
           ...
           (value_1100, value_2200)
        ) 

Jeśli masz te warunki filtrowania w tabeli, możesz to zrobić nawet:

  AND (table1.col2, table2.col2) IN
        (  SELECT filter1, filter2
           FROM filter_table
        )



  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. Kombinacje z pojedynczej tabeli pogrupowane według wartości kolumny

  2. Zawsze pokazywać miejsca dziesiętne w SQL?

  3. Narzędzie programistyczne Oracle SQL:Pobieranie i instalacja

  4. ORA-28113:predykat zasad zawiera błąd

  5. pierwszy wiersz VS Następny wiersz VS numer wiersza