There is a users table and a branch_users table
SELECT * FROM `user` INNER JOIN branch_users ON branch_users.user_id = user.id I need to select all users from the user table that are not in the branch_users table. That is, if user.id = 1 is in the branch_users table, do not display it, if not, output it.
I can not make a request, there are options?