There is way to remove duplicate data or row like...
Step 1: Move the non duplicates (unique tuples) into a temporary table
CREATE TABLE new_table AS
SELECT * FROM old_table WHERE 1 GROUP BY [COLUMN TO remove duplicates BY];
Step 2: delete delete the old table
Step 3: rename the new_table to the name of the old_table
RENAME TABLE new_table TO old_table;