I am wanting to select all images that a user does not already have.
I have three tables: user, image, and user_image:
user
image
user_image
Try:
SELECT i.* FROM _image i LEFT JOIN _user_image u ON u.image_id = i.id WHERE u.user_id !=