怎么用mysql删除某个字段重复的数据


 

怎么用mysql删除某个字段重复的数据

delete from tablename where id not in (select id from (select min(id) as id from tablename group by key) as b);
delete from exam where age in (select age from (select min(age)as age from exam group by name having count(*)>1)as b);
– key是重复的字段

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM