I would like to retrieve the names of people who didn\'t work on a project in PostgreSQL.
I got a table named employees with their names and
employees
names
try this
SELECT fname,lname FROM werknemer w WHere w.snn not in (Select wa.ssn from werkt_aan wa)