SQL帮助内部JOIN LEFT JOIN

时间:2016-05-20 13:48:22

标签: mysql sql join left-join inner-join

我的查询是:

SELECT Pics.ID, Pics.ProfileID, Pics.Position, Rate.ID as RateID, Rate.Rating, Rate.ProfileID, Gender
FROM Pics
    INNER JOIN Profiles ON Pics.ProfileID = Profiles.ID
    LEFT JOIN Rate ON Pics.ID = Rate.PicID
WHERE Gender = 'female'
ORDER BY Pics.ID

结果是:

ID ProfileID Position RateID Rating ProfileID Gender
23 24        1        59     9      42        female
24 24        2        33     8      32        female
23 24        1        53     3      40        female
26 24        4        31     8      32        female
30 25        4        30     8      32        female
24 24        2        58     4      42        female

现在我想做另一个查询: 如果Rate.ProfileID = 32,请删除包含相同Pics.ID

的所有行

所以留下:

ID ProfileID Position RateID Rating ProfileID Gender
23 24        1        59     9      42        female
23 24        1        53     3      40        female

并且还删除任何重复的Pics.ID,因此它们只是其中之一,因为它们都是= 23所以留下:

23 24 1 59 9 42女性或23 24 1 53 3 40女性

3 个答案:

答案 0 :(得分:2)

你可能应该摆脱“神奇的数字”,比如32。那就是说,我认为这会给你你需要的东西。

SELECT
    P.ID,
    P.ProfileID,
    P.Position,
    R.ID as RateID,
    R.Rating,
    R.ProfileID,
    PR.Gender
FROM
    Pics P
INNER JOIN Profiles PR ON PR.ID = P.ProfileID
LEFT JOIN Rate R ON R.PicID = P.ID
WHERE
    PR.Gender = 'female' AND
    NOT EXISTS (
        SELECT *
        FROM Pics P2
        INNER JOIN Profiles PR2 ON PR2.ID = P2.ProfileID
        INNER JOIN Rate R2 ON R2.PicID = P2.ID AND R2.ProfileID = 32
        WHERE
            P2.ID = P.ID
    )
ORDER BY
    P.ID

答案 1 :(得分:1)

  

@Shadow因为第2行包含Rate.ProfileID = 32,所以   Pic.ID = 24,因此它必须删除所有Pic.ID = 24,这将删除   最底行也是。

SELECT Pics.ID, Pics.ProfileID, Pics.Position, Rate.ID as RateID, Rate.Rating, Rate.ProfileID, Gender
FROM Pics
INNER JOIN Profiles ON Pics.ProfileID = Profiles.ID
LEFT JOIN Rate ON Pics.ID = Rate.PicID
WHERE Gender = 'female' AND Pics.ID NOT IN (
    SELECT Pics.ID 
    FROM Pics
    INNER JOIN Profiles ON Pics.ProfileID = Profiles.ID
    LEFT JOIN Rate ON Pics.ID = Rate.PicID
    WHERE Gender = 'female' AND Rate.ProfileID = 32)

ORDER BY Pics.ID

答案 2 :(得分:0)

试试这个:

SELECT Pics.ID, Pics.ProfileID, Pics.Position, Rate.ID as RateID, 
       Rate.Rating, Rate.ProfileID, Gender
FROM Pics
INNER JOIN Profiles ON Pics.ProfileID = Profiles.ID
LEFT JOIN Rate ON Pics.ID = Rate.PicID
LEFT JOIN Rate AS r 
   ON Rate.ProfileID = r.ProfileID AND Rate.ID > r.ID
WHERE Gender = 'female' AND (Pics.ProfileID <> 32) AND (r.ID IS NULL)
ORDER BY Pics.ID

最后LEFT JOIN操作有助于在ON子句中使用此谓词识别重复项:

Rate.ProfileID = r.ProfileID

如果存在此类重复项(如Rate.ProfileID = 42的情况),则由于以下条件,仅返回最大 Rate.ID的重复项:

Rate.ID > r.ID (`ON` clause)

(r.ID IS NULL) (`WHERE` clause)