赞
踩
##mysql删除冗余数据记录
SQL语句 : delete from tb_ceshi where c_id not in(select min(c.c_id) from (select * from tb_ceshi) c group by c.c_name,c.c_course,c.c_grade);
删除相同的的数据(除了c_id不同)。