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
Delete duplicate rows with the DELETE JOIN statement:
DELETE JOIN
DELETE t1 FROM table_name t1 JOIN table_name t2 WHERE t1.id < t2.id AND t1.title = t2.title AND t1.company = t2.company AND t1.site_id = t2.site_id;