आप टेबल जॉइन का उपयोग कर सकते हैं (उदाहरण के लिए http://dev.mysql .com/doc/refman/5.0/hi/join.html ) सभी अनुरोधों को खोजने के लिए।
वास्तव में आप यहाँ एक सबक्वेरी का उपयोग कर सकते हैं:
SELECT * FROM users_status WHERE userid = "$userid"
OR userid in (SELECT request_to FROM friendships where request_from = "$userid" AND friendship_status = 1)
OR userid in (SELECT request_from FROM friendships where request_to = "$userid" AND friendship_status = 1)
$userid
को बदलें आपकी उपयोगकर्ता आईडी के साथ