I need to DELETE duplicated rows for specified sid on a MySQL table.
DELETE
MySQL
How can I do this with an SQL query?
You could just use a DISTINCT clause to select the "cleaned up" list (and here is a very easy example on how to do that).