Right now I have a small database with two tables that look something like this:
users table ==================== id name status_id 1 Bo
You aren't JOINing here:
SELECT * FROM Users U, Statuses S WHERE S.id=U.status_ID AND status_id = 2;