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

SQL ottiene nomi che non hanno funzionato su un progetto

Questo di solito viene risolto usando un NOT EXISTS domanda:

select e.*
from employees e
where not exists (select *
                  from works_on wo
                  where wo.ssn = e.ssn)