SELECT `users`.* FROM `users`
LEFT JOIN `user_statuses` ON `users`.`id` = `user_statuses`.`user_id`
WHERE `user_statuses`.`status_id` NOT IN 1
select u.*
from users u
where not exists(
select 999
from user_statuses us
where us.user_id = u.id
and us.status_id = 1
)