首页
Python
Java
前端
数据库
Linux
Chatgpt专题
开发者工具箱
emails专题
[LeetCode][Database]Delete Duplicate Emails
题目来源:https://leetcode.com/problems/delete-duplicate-emails/ 题目要求删除Email相同的Person,并且保留Id最小的那一个 那么我们直接用delete语句: delete a from Person a join Person b where a.Email = b.Email and a.Id > b.Id 通过 不
阅读更多...
196. Delete Duplicate Emails - 删除重复的电子邮箱 <easy>
编写一个 SQL 查询,来删除 Person 表中所有重复的电子邮箱,重复的邮箱里只保留 Id 最小 的那个。 +----+------------------+ | Id | Email | +----+------------------+ | 1 | john@example.com | | 2 | bob@example.com | | 3 | john@e
阅读更多...
182. Duplicate Emails - 查找重复的电子邮箱 <easy>
编写一个 SQL 查询,查找 Person 表中所有重复的电子邮箱。 示例: +----+---------+ | Id | Email | +----+---------+ | 1 | a@b.com | | 2 | c@d.com | | 3 | a@b.com | +----+---------+ 根据以上输入,你的查询应返回以下结果: +---------+ | Email
阅读更多...