The easiest way to get rid of duplicates:
1) Back up the database, just in case
2) Create another table with the same fields as the one that has the duplicates
3) SELECT DISTINCT from the old table into the new table
4) Make sure the new table has what you want
5) TRUNCATE the old table
6) SELECT from the new table into the old one