Got two tables: users(id, column) and objects(user_id, column).
How to extract all users who don’t have any corresponding object?
I’m using MySQL.
Got two tables: users(id, column) and objects(user_id, column) . How to extract all users
Share
Something like this should suffice, left outer join to keep all users then remove any which have a corresponding object.