I need to DELETE duplicated rows for specified sid on a MySQL table.
DELETE
MySQL
How can I do this with an SQL query?
DELETE T2 FROM table_name T1 JOIN same_table_name T2 ON (T1.title = T2.title AND T1.ID <> T2.ID)