SQL查询查找给定的人,朋友对表的共同朋友数

时间:2018-12-24 13:41:26

标签: mysql sql database

我搜索了其他问题,我能够解决部分我想要的东西,但是我无法从中得到进一步的帮助。

我在Friends表中有一个包含两列(用户,friend)的表。 表中将每个用户及其朋友指定为波纹管。

User | Friend
1        2
1        6
2        1
2        3
2        6

注意:对于每对(用户,朋友),都有一行(朋友,用户) 例如:1,2有2,1,因为用户2有朋友1

到目前为止,我到达了以下查询,该查询提供了我们指定的配对的共同朋友的数量:

select DISTINCT f1.user1 'User', f2.user1 'Friend', COUNT(DISTINCT     f1.user2) 'Mutual friends'
from Friends p
inner join Friends f1 on f1.user2 = p.user1
inner join Friends f2 on f2.user2 = p.user1
where f1.user1 = 2 and f2.user1 = 3 and f1.user2 = f2.user2
group by f1.user1, f2.user1;

我现在的输出:

User    |Friend |Mutual Friends
1            2      1

我想查找整个表格中每对的共同朋友的数量:

User |  Friend |  Mutual Friends
1        2        1
1        6        0
2        1        1
2        3        0
2        6        0

如何找到所有用户,朋友对的共同朋友数?

1 个答案:

答案 0 :(得分:2)

您可以使用自联接:

select f1.user as user1, f2.user as user2, count(*) as num_in_common
from friends f1 join
     friends f2
     on f1.friend = f2.friend 
group by f1.user, f2.user;

如果需要特定用户对的信息,可以添加where子句。