删除

LeetCode:Delete Duplicate Emails

[亡魂溺海] 提交于 2019-11-29 03:34:50
1、题目名称 Delete Duplicate Emails(删除重复的邮箱数据) 2、题目地址 https://leetcode.com/problems/delete-duplicate-emails/ 3、题目内容 写一个SQL删除表Person中所有的重复数据,对于重复的数据只保留Id最小的数据 +----+------------------+ | Id | Email | +----+------------------+ | 1 | john@example.com | | 2 | bob@example.com | | 3 | john@example.com | +----+------------------+ Id is the primary key column for this table. 例如,在执行完该SQL后,表中剩余数据如下: +----+------------------+ | Id | Email | +----+------------------+ | 1 | john@example.com | | 2 | bob@example.com | +----+------------------+ 4、初始化数据库脚本 在MySQL数据库中建立一个名为LEETCODE的数据库,用MySQL命令行中的source命令执行下面脚本: --