I have the following tables:
members(id, name, surname, username, password)
friends(uid, friend_uid, confirmed_uid, confirmed_friend_uid)
in the friends table the uid and friend_uid relate to members.id, where uid is always lower then friend_uid. friends.confirmed is true when friends.uid has agreed to be friends and friends.friend_confirmed is true when friends.friend_uid has confirmed the friendship.
User A is only friends with B and C, they have both confirmed the friendship. I want a query that will show A a list of B and C's (all A's confirmed friends) confirmed friends that are not already friends with A. Making sure that that if B and C have common friends they are top of the list.
As my MySQL is very rusty I am currently doing this with multiple queries, but this must be very inefficient and I need to create a query to it all for me before it starts effecting the performance of my web site.
I have started reading MySQL documentation and I will update this if I get anywhere, but if someone can help me speed up the process, I will greatly appreciate it.
Here is how i am doing it with a bit pseudo code:
member_id_for_A = 1;
friends_of_A = mysql_query("
SELECT m.*, f.* FROM friends f
inner join members m on m.id = f.uid
WHERE f.friend_uid = " + member_id_for_A + " AND confirmed_uid=1 AND confirmed_friend_uid=1
UNION
SELECT m.*, f.* FROM friends f
inner join members m on m.id = f.friend_uid
WHERE f.uid = " + member_id_for_A + " AND confirmed_uid=1 AND confirmed_friend_uid=1");
foreach(row : friends_of_A)
{
friend_id = get_friened_id(row, member_id_for_A);
friends_of_friend = get_friends(friend_id); // Performs a query like above friends_of_friend
result = remove_matches(friends_of_A, friends_of_friend); // Remove common friends
// Do something with results and move onto the next friend
}
I know this is very bad code and not efficient, but it was a quick hacky way I could get the functionality I needed until I had the time to learn more MySQL. Hopefully it gives a clear picture of what I am aiming for with one single query.
