これは通常、NOT EXISTS
を使用して解決されます クエリ:
select e.*
from employees e
where not exists (select *
from works_on wo
where wo.ssn = e.ssn)
これは通常、NOT EXISTS
を使用して解決されます クエリ:
select e.*
from employees e
where not exists (select *
from works_on wo
where wo.ssn = e.ssn)