如何删除mysql数据库中的重复记录?
使用 rails 或 mysql 查询删除 mysql 数据库中重复记录的最佳方法是什么?
What's the best way to delete duplicate records in a mysql database using rails or mysql queries?
推荐答案
您可以通过以下方式将不同的记录复制到新表中:
What you can do is copy the distinct records into a new table by:
select distinct * into NewTable from MyTable
相关文章