Deleting duplicate rows with sql

后端 未结 5 809
滥情空心
滥情空心 2021-01-17 03:59

I am trying to delete duplicate rows from my mysql table. I\'ve tried multiple queries but I am keep on getting this error: #1093 - You can\'t specify target table \'usa_cit

5条回答
  •  终归单人心
    2021-01-17 04:36

    You may found here an answer to your problem: How to delete duplicate records in mysql database?

    You should improve your database by using keyfields to prevent duplicate rows, so you dont need to clear in future.

提交回复
热议问题