I need to delete duplicate rows only from the table, like I have 3 duplicate rows in the table, my query will delete 2 rows from 3 duplicated rows.
How can I get this? P
If you have the id's of the rows you want to delete then...
DELETE FROM table WHERE id IN (1, 4, 7, [id numbers to delete...])