PostgreSQL
 sql >> Database >  >> RDS >> PostgreSQL

(Una tabella) ottiene le righe non presenti senza unione

È questo che vuoi?

select e.*
from egr e
where not exists (select 1
                  from egr e2
                  where e2.groupid = e.groupid and e2.offid <> e.offid 
                 );

O se vuoi limitarti a queste due offerte:

select e.*
from egr e
where e.offid in (1, 2) and
      not exists (select 1
                  from egr e2
                  where e2.groupid = e.groupid and 
                        e2.offid in (1, 2) and
                        e2.offid <> e.offid 
                 );