问题 从表中删除重复记录. 解决方案 用带有聚集函数的子查询, 例如MIN, 任意选择保留的ID(本例中只保留每组中ID号最小的记录): delete from dept where id not in (select min(id) from dept group by name)