I have the following tables:
team_members
userid
teamid
users
uid
name_f
name_l
friends
friend_id
friend_one
friend_two
I use the following statement to select uid and profile_pic of the users that belong to a certain team.
SELECT DISTINCT u.uid, u.profile_pic
FROM friends f, users u, team_members m
WHERE m.teamid =$team_var
AND u.uid = m.userid
I also have to run the following to select the uid and profile_pic of the users who are friends with the logged-in user and belong to a certain team.
SELECT DISTINCT u.uid, u.profile_pic
FROM friends f, users u, team_members m
WHERE m.teamid =$team_var
AND u.uid = m.userid
AND m.userid = f.friend_two
AND f.friend_one =$session_id
I'm looking for a way to join these two and instead of running 2 queries, run one single query that can order and list the users who are friends with the logged-in user at the top. So let's say that a certain team has 30 users and 5 of those users are friends with the logged-in user, I would like to have the first 5 listed in the while loop following the statement to be those of the friends with the rest of the 25 randomly shown.
Thanks for your time.