Right now I have a small database with two tables that look something like this:
users table ==================== id name status_id 1 Bo
SELECT u.*, s.* FROM users u inner join statuses s on u.status_id = s.id WHERE u.status_id = 2