保留某字段重复id最小的数据
1、group by 展示的id是该分组第一次来的数据,所以不需要加MIN()
2、delete 中的子查询语句 ,规定 删除的表和查询的表 表明不能相同,所以需要造表
delete from titles_test where id not in ( select * from ( select id from titles_test group by emp_no) as a );
保留某字段重复id最小的数据
1、group by 展示的id是该分组第一次来的数据,所以不需要加MIN()
2、delete 中的子查询语句 ,规定 删除的表和查询的表 表明不能相同,所以需要造表
delete from titles_test where id not in ( select * from ( select id from titles_test group by emp_no) as a );