Is it possible to write the following SQL statement as a FULL JOIN instead of using NOT IN?
select * from [user] u
AND u.user_id NOT IN (SELECT user_id FROM job)
I'd like to do something like this:
SELECT u.* FROM [user] u
FULL JOIN job uj ON u.user_id = uj.user_id
WHERE uj.user_id IS NULL
I'm looking to get all the users that do not have a record in the job table using a FULL JOIN.