自己参加を使用できます:
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
を追加できます 特定のユーザーペアについてこの情報が必要な場合は、句。
自己参加を使用できます:
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
を追加できます 特定のユーザーペアについてこの情報が必要な場合は、句。