美文网首页
leecode中的SQL题(六)

leecode中的SQL题(六)

作者: 瓜皮小咸鱼 | 来源:发表于2019-04-03 10:41 被阅读0次

    编写一个 SQL 查询,查找 Person 表中所有重复的电子邮箱。

    +----+---------+
    | Id | Email   |
    +----+---------+
    | 1  | a@b.com |
    | 2  | c@d.com |
    | 3  | a@b.com |
    +----+---------+
    

    根据以上输入,你的查询应返回以下结果:

    +---------+
    | Email   |
    +---------+
    | a@b.com |
    +---------+
    

    题目分析:
    两表关联,查询id不同,email相同的行。

    答案:

    select distinct a.Email from person a, person b
    where a.email = b.email and a.id <> b.id; 
    

    相关文章

      网友评论

          本文标题:leecode中的SQL题(六)

          本文链接:https://www.haomeiwen.com/subject/uorabqtx.html