Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.
Select 1 
from Friend 
where Friend.UserID = 1 
  and FriendID = (select User.UserID from User where UserName = 'friend_user');

What I'm trying to do is to check whether a user is "friends" with another user. So when the user navigates to "foo.com/user/username" the username is passed and that's when I do the check. I would prefer to not use two selects but it seems that's the only way to do this. Any suggestions to the best way of doing a task like this would be appreciated.

share|improve this question
You are not using two selects. You have a single select with a co-related subquery. With a modern DBMS (and a decent query optimizer) chances are very high that there is no difference in the efficiency of your statement and the accepted solution. – a_horse_with_no_name Feb 7 at 20:54

2 Answers

up vote 1 down vote accepted

You could use a JOIN instead:

Select 1 
from Friend f
join User u
    on f.FriendID = u.UserID
    and u.UserName = 'friend_user'
where 
    f.UserID = 1;
share|improve this answer
This works, but what if I wanted to select stuff from the User table, like the Friends UserName and such? – user979663 Feb 7 at 20:42
1  
@user979663 This is easy when using JOIN. Simply add the fields to your SELECT statement, and prefix them with the u table alias. – Michael Fredrickson Feb 7 at 20:44
Ok its all starting to click now haha – user979663 Feb 7 at 20:45

Answer to: "This works, but what if I wanted to select stuff from the User table, like the Friends UserName and such? –"

Select u.username, count(f.friends)
from Friend f
join User u
    on f.FriendID = u.UserID
    and u.UserName = 'friend_user'
where 
    f.UserID = 1;
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.