I have a table with the following fields:
id (Unique) url (Unique) title company site_id
Now, I need to remove rows having same titl
titl
There is another solution :
DELETE t1 FROM my_table t1, my_table t2 WHERE t1.id < t2.id AND t1.my_field = t2.my_field AND t1.my_field_2 = t2.my_field_2 AND ...