自用题解
删除emp_no重复的记录,只保留最小的id对应的记录。
http://www.nowcoder.com/questionTerminal/3d92551a6f6d4f1ebde272d20872cf05
保留某字段重复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 );