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

Oracle wybierający rekord z warunkiem wielu kolumn

Policz odpowiednie wiersze. Jeśli potrzebne jest tylko imię

select ename
from mytable
where event in (37,49) and date is null
group by ename
having count(*) = 2

EDYTUJ

Zgodnie z nowym zestawem warunków

select distinct ename
from mytable t1
where not exists ( 
    select 1 
    from mytable t2
    where t2.ename = t1.ename and t2.event in (37,49) and t2.date is not NULL)
    ;


  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. Anonimowy typ TABLE lub VARRAY w Oracle

  2. Funkcja Oracle add_months różni się od Javy

  3. Jak wstawić informacje w kolumny do wiadomości e-mail

  4. Pierwszeństwo operatorów w wyrażeniach regularnych

  5. Ranking warunkowy Oracle SQL