To se obvykle řeší pomocí NOT EXISTS
dotaz:
select e.*
from employees e
where not exists (select *
from works_on wo
where wo.ssn = e.ssn)
To se obvykle řeší pomocí NOT EXISTS
dotaz:
select e.*
from employees e
where not exists (select *
from works_on wo
where wo.ssn = e.ssn)