DELETE t1 FROM tTable t1, tTable t2 WHERE t1.fieldName = t2.fieldName AND t1.id > t2.id
ELSE
create another table below
CREATE TABLE myTable_new (ID INT PRIMARY KEY, Title varchar(20))
and add the values as
INSERT INTO myTable_new (ID, Title) SELECT ID, DISTINCT Title FROM old_table
Considering old_table is an earlier table ...
source share