【SQL】LeetCode-Delete Duplicate Emails

在名为Person的数据库表中,使用SQL查询删除所有重复的电子邮件条目,保留每个唯一电子邮件的最小Id记录。解决方案是通过比较每个记录的Id和电子邮件,删除Id较大的重复项,确保只留下每个唯一电子邮件的最小Id对应的一条记录。
摘要由CSDN通过智能技术生成

LeetCode 196:Delete Duplicate Emails

【Description】

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

For example, after running your query, the above Person table should have the following rows:
在这里插入图片描述
Note:
Your output is the whole Person table after executing your sql. Use delete statement.

【Solution】
delete p1
from person p1, person p2
where p1.email=p2.email
and p1.id>p2.id

p1.id>p2.id means that we delete the second one.

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值