sql语句删除重复数据,保留id最小的一条


错误:

delete from student where
username in ( select username from student group by username having count(username)>1)
and id not in (select min(id) as id from student group by username having count(username)>1 )

正确:

delete from student where
username in (select username from ( select username from student group by username having count(username)>1) a)
and id not in ( select id from (select min(id) as id from student group by username having count(username)>1 ) b)

 


免责声明!

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



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