Dette løses normalt ved hjælp af en NOT EXISTS
forespørgsel:
select e.*
from employees e
where not exists (select *
from works_on wo
where wo.ssn = e.ssn)
Dette løses normalt ved hjælp af en NOT EXISTS
forespørgsel:
select e.*
from employees e
where not exists (select *
from works_on wo
where wo.ssn = e.ssn)