What is the simplest way to delete records with duplicate name in a table? The answers I came across are very confusing.
Removing duplicate records from table
I got it! Simple and it worked great.
delete t1 from tTable t1, tTable t2 where t1.locationName = t2.locationName and t1.id > t2.id
http://www.cryer.co.uk/brian/sql/sql_delete_duplicates.htm
1.4m articles
1.4m replys
5 comments
57.0k users