把不重复的记录复制到一个新table, 之后删除旧table, 再把新table改回旧table的名不就行了? create table new_table_name select *, count(distinct title_name) from old_table_name group by title_name new_table_name就是新表名 old_table_name 为原表名 title_name 就是不想重复的字段