I have a table "friendship" like this
user_id
friend_id
For each friendship I make one record instead of two.
---------------------
user_id | friend_id |
--------------------
1 | 2 |
--------------------
And I Don't add (2 , 1) into table. So, I need to get all the friends of friends list including those who are already in my friend list preferably without subqueries. Any suggestions ? Thanks :)