3

ソーシャル ネットワークを構築しています。メンバーが簡単に新しい友達を見つけられるようにしたいと考えています。Facebook と同じように、共通の友達の数から知っている人を何人か紹介したいと思います。

友情のための私の PostgreSQL データベース構造は次のとおりです。

> PROFILES_FRIENDSHIPS
> ----------------------
> - fri_profile_from // int, Person who sent the friendship request
> - fri_profile_to // int, Person who received the friendship request
> - fri_accepted // tinyint, has the person accepted the friendship request?

これは、2 つのプロファイル (ID 24 のプロファイルと ID 26 のプロファイル) 間の共通の友達の数を見つけるために PostgreSQL で見つけたクエリです。

SELECT COUNT(*)
FROM profiles AS p
INNER JOIN (
        SELECT (
        CASE    WHEN ( 26 = f.fri_profile_from ) THEN f.fri_profile_to 
                    ELSE f.fri_profile_from END) AS fri_profile_from 
        FROM profiles_friendships AS f 
        WHERE 1 = 1
        AND (f.fri_profile_to = 26 OR f.fri_profile_from = 26) 
        AND fri_accepted = 1) 
AS f1 
ON (f1.fri_profile_from = p.pro_id) 
INNER JOIN (
        SELECT (
        CASE    WHEN ( 24 = f.fri_profile_from ) THEN f.fri_profile_to 
                    ELSE f.fri_profile_from END) AS fri_profile_from 
        FROM profiles_friendships AS f 
        WHERE 1 = 1
        AND (f.fri_profile_to = 24 OR f.fri_profile_from = 24) 
        AND fri_accepted = 1) 
AS f2 
ON (f2.fri_profile_from = p.pro_id)

今、私はこのクエリを変換して、私の最も共通の友人であるが、私とは友人ではないプロファイルを見つけられるようにしようとしています. しかし、成功しませんでした... 私もこのウェブサイトで多くの例を調査しましたが、それらのほとんどは友情テーブルの二重記録で作業しています. 24 が 26 と友達である場合のように、(24, 26) と (26, 24) の 2 つのレコードがあります。これにより、参加したり共通の友達を見つけたりするのが簡単になりますが、それは私がデータベースを構築したい方法ではありません.

誰かがこのクエリを開始するのを手伝ってくれたら、とても感謝しています.

4

3 に答える 3

2

ステップ 1 友達ではない全員を取得する

Select * 
From profiles
where (from/to_friendship is not myID)

ステップ 2 共通の友達の数を含む列を含め、それで並べ替えます

select *, 
  (select count(*) from [mutual friends query]) as NrOfMutualFriends)
From profiles
where (from/to_friendship is not myID)
Order by NrOfMutualFriends

編集:ミューチュアルフレンズクエリ:

ステップ 1 すべての私の友達とすべての彼の友達を選択します

select if(from = myId, to, from) as myfriendids
from PROFILES_FRIENDSHIPS where from = myid or to = myid

select if(from = hisId, to, from) as hisfriendids
from PROFILES_FRIENDSHIPS where from = hisId or to = hisId

ステップ 2 これらのクエリを 1 つに結合する

select count(*) 
from 
  ( select if(from = myId, to, from) as myfriendids
    from PROFILES_FRIENDSHIPS where from = myid or to = myid) myfriends
inner join 
  ( select if(from = hisId, to, from) as hisfriendids
  from PROFILES_FRIENDSHIPS where from = hisId or to = hisId) hisfriends
on myfriendsids = hisfriendsids
于 2013-11-05T13:22:16.753 に答える
2
WITH friends AS(
  SELECT p.pro_id, CASE WHEN f.fri_profile_from = p.pro_id THEN f.fri_profile_to 
                    ELSE f.fri_profile_from END AS friend_id
  FROM profiles
)
SELECT f2.pro_id, count(*) as friend_count
FROM friends AS f1
  JOIN friends AS f2
    ON f1.friend_id=f2.friend_id
       AND f1.pro_id != f2.pro_id
       AND f1.pro_id != f2.friend_id
WHERE f1.pro_id = :user_id
GROUP BY f2.pro_id
ORDER BY friend_count;
于 2013-11-05T13:38:07.213 に答える
2

ダブルレコード形式でインラインビューを簡単に作成できます。

with cte_friends(user_id, friend_id) as (
    select
        fri_profile_from, fri_profile_to
    from PROFILES_FRIENDSHIPS
    where fri_accepted = 1

    union all -- or union if there could be duplicates

    select
        fri_profile_to, fri_profile_from
    from PROFILES_FRIENDSHIPS
    where fri_accepted = 1
)
select
    f2.friend_id, count(distinct f2.user_id)
from cte_friends as f1
    inner join cte_friends as f2 on f2.user_id = f1.friend_id
    left outer join cte_friends as f3 on f3.user_id = f2.friend_id and f3.friend_id = f1.user_id
where
    f1.user_id = 1 and f3.user_id is null and
    f2.friend_id != 1
group by f2.friend_id
order by 2 desc

sql fiddle demo

于 2013-11-05T16:38:47.553 に答える