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

SQL-forespørgsel returnerer kun data, hvis ALLE nødvendige kolonner er til stede og ikke NULL

Du kan bruge exists . Jeg tror, ​​du agter:

select t.*
from t
where exists (select 1
              from t t2
              where t2.id = t.id and t2.type = 'Purchase' and t2.total is not null
             ) and
      exists (select 1
              from t t2
              where t2.id = t.id and t2.type = 'Exchange' and t2.total is not null
             ) and
      exists (select 1
              from t t2
              where t2.id = t.id and t2.type = 'Return' and t2.total is not null
             );

Der er måder at "forenkle" dette på:

select t.*
from t
where 3 = (select count(distinct t2.type)
           from t t2
           where t2.id = t.id and
                 t2.type in ('Purchase', 'Exchange', 'Return') and
                 t2.total is not null
          );


  1. Funktionelle enheder

  2. PDO slet specificeret række fra tabellen

  3. Vælg et tilfældigt udsnit af resultater fra et forespørgselsresultat

  4. MySQL:Hvordan laver man en hurtigere IP-områdeforespørgsel? GeoIP