当前位置: 代码迷 >> PHP >> 如何在一张朋友表里面查询和自己有相同朋友并且不是自己的朋友的用户
  详细解决方案

如何在一张朋友表里面查询和自己有相同朋友并且不是自己的朋友的用户

热度:274   发布时间:2016-04-29 01:40:58.0
怎么在一张朋友表里面查询和自己有相同朋友并且不是自己的朋友的用户


uid和朋友ID都是在另外一张表里面
怎么在一张朋友表里面查询和自己有相同朋友并且不是自己的朋友的用户

------解决方案--------------------
朋友表friend中至少有两个字段,user_id字段和friend_id字段
1.首先查出自己的朋友:select friend_id from friend where user_id = "zhangshan";
2.select distinct user_id from friend where friend_id in (select friend_id from friend where user_id = "zhangshan") and user_id != "zhangshan" and user_id not in (select friend_id from friend where user_id = "zhangshan");
  相关解决方案