• 企业400电话
  • 微网小程序
  • AI电话机器人
  • 电商代运营
  • 全 部 栏 目

    企业400电话 网络优化推广 AI电话机器人 呼叫中心 网站建设 商标✡知产 微网小程序 电商运营 彩铃•短信 增值拓展业务
    SQL实现LeetCode(196.删除重复邮箱)

    [LeetCode] 196.Delete Duplicate Emails 删除重复邮箱

    Write a SQL query to delete all duplicate email entries in a table named Person, keeping only unique emails based on its smallest Id.

    +----+------------------+
    | Id | Email            |
    +----+------------------+
    | 1  | john@example.com |
    | 2  | bob@example.com  |
    | 3  | john@example.com |
    +----+------------------+
    Id is the primary key column for this table.

    For example, after running your query, the above Person table should have the following rows:

    +----+------------------+
    | Id | Email            |
    +----+------------------+
    | 1  | john@example.com |
    | 2  | bob@example.com  |
    +----+------------------+

    这道题让我们删除重复邮箱,那我们可以首先找出所有不重复的邮箱,然后取个反就是重复的邮箱,都删掉即可,那么我们如何找出所有不重复的邮箱呢,我们可以按照邮箱群组起来,然后用Min关键字挑出较小的,然后取补集删除即可:

    解法一:

    DELETE FROM Person WHERE Id NOT IN
    (SELECT Id FROM (SELECT MIN(Id) Id FROM Person GROUP BY Email) p);
    

    我们也可以使用内交让两个表以邮箱关联起来,然后把相同邮箱且Id大的删除掉,参见代码如下:

    解法二:

    DELETE p2 FROM Person p1 JOIN Person p2 
    ON p2.Email = p1.Email WHERE p2.Id > p1.Id;
    

    我们也可以不用Join,而直接用where将两表关联起来也行:

    解法三:

    DELETE p2 FROM Person p1, Person p2
    WHERE p1.Email = p2.Email AND p2.Id > p1.Id;

    类似题目:

    Duplicate Emails

    参考资料:

    https://leetcode.com/discuss/61176/simple-solution-using-a-self-join

    https://leetcode.com/discuss/48403/my-answer-delete-duplicate-emails-with-double-nested-query

    到此这篇关于SQL实现LeetCode(196.删除重复邮箱)的文章就介绍到这了,更多相关SQL实现删除重复邮箱内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

    您可能感兴趣的文章:
    • SQL实现LeetCode(185.系里前三高薪水)
    • SQL实现LeetCode(184.系里最高薪水)
    • SQL实现LeetCode(183.从未下单订购的顾客)
    • SQL实现LeetCode(182.重复的邮箱)
    • SQL实现LeetCode(181.员工挣得比经理多)
    • SQL实现LeetCode(180.连续的数字)
    • C++实现LeetCode(179.最大组合数)
    • SQL实现LeetCode(197.上升温度)
    上一篇:MySQL Shell import_table数据导入的实现
    下一篇:SQL实现LeetCode(197.上升温度)
  • 相关文章
  • 

    © 2016-2020 巨人网络通讯 版权所有

    《增值电信业务经营许可证》 苏ICP备15040257号-8

    SQL实现LeetCode(196.删除重复邮箱) SQL,实现,LeetCode,196.,删除,