I have the following tables:
user (id, firstname, lastname)
follow (id, follower_id, following_id)
Now imagine we have users with id 1, 2, 3, 4, 5
And user_id = 1
already following user 2 and 3.
Now I want to write a query that gives me the user_id's
that I (user_id = 1)
am not following which are (4 and 5).
Can someone please help.
This should do it: