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.
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.
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.