I ran this script Im working on twice by accident which caused a ton of duplicate entries. I dont want to start over so how would I delete multiple entries in a database?
Nevermind found this link which gave me exactly what I needed and worked perfect:
CREATE TABLE newtable SELECT * FROM oldtable WHERE 1 GROUP BY [column to remove duplicates from];