删除重复的电子邮箱

# Write your MySQL query statement below
delete from `Person`
where Id not in(
select * from (select min(Id) from `Person` group by Email
) as tmp);

//删除Person表中Email邮件字段重复值

//执行mysql后就会出现下面的的结果

[SQL] delete from `user`
where id not in(
select * from (select max(id) from `user` group by name
) as tmp);
受影响的行: 10
时间: 0.003s

猜你喜欢

转载自www.cnblogs.com/xieqijiang/p/11095637.html