Jump to content

[SOLVED] friends of friends query


phorcon3

Recommended Posts

mysql table

 

table: friends

rows: friend1, friend2

 

i want to get the friends of friend1's friends ...so when friend1 = 'test' how do i get test's friends' friends? god i hope that makes sense lol..

 

i do know that i could first fetch test's friends ..and then loop those through another query ..but i wanna do that all within just ONE single query ...any ideas?

 

select friend2 from friends where friend1 = test blahblah (blahblah)

Link to comment
Share on other sites

I'm imagining your table does something like this;

 

user_id - the id of the user

friend1 - one of his friends

friend2 - another friend

 

in which case something along the lines of...

 

SELECT `friend1`, `friend2`
FROM `friends`
WHERE `user_id` IN(SELECT `user_id`
FROM `friends`
WHERE `friend1` = 'test');

Link to comment
Share on other sites

mysql_table (friends)

 

id      friend1      friend2
1       test1        test2
2       test2        test1
3       test2        test3
4       test3        test2
5       test2        test4
6       test4        test2

 

now i want test1's friends' friends, which in this case would output, test3 and test4

 

i can only think of doing it this way:

 

$a=mysql_query("SELECT friends2 FROM friends WHERE friend1 = test1);

while($b=mysql_fetch_assoc($a))

{

$c=mysql_query("SELECT friends2 FROM friends WHERE friend1 = $b[friend2]");

while($d=mysql_fetch_assoc($c))

{

$d.=['friend2'];//outputs test3 and test4

}

}

 

but i wanna do all that within just one single query ...i dont know if thats possible or not.. i hope it makes more sense now :/

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.