-3

I've a table without PK and auto increment columns, I have same rows at mulitple times inserts. I wanna keep only one row and to remove other rows.

I have found more than 2000 rows matching the redundancy, how can I eliminate the duplicates.

1 Answers1

-2

Add an auto-incrementing ID to your table:

Add Auto-Increment ID to existing table?

Then find your duplicates and delete them by their IDs.

Community
  • 1
  • 1
Zach Dennis
  • 1,754
  • 15
  • 19
  • This got voted down because someone thinks this is not an acceptable way to remove duplicates or because the question was poor and I shouldn't have answered it? – Zach Dennis Jun 17 '16 at 16:03