TheRambler
Programmer
I have seen many posts about removing duplicate records when a single field (or concatenated fields) is the same in two or more records.
But what about if you want to delete records that are exact duplicates of each other?
When every field is the same (replica) in more than one record, the easiest way to remove them is:
SELECT * FROM table UNION ;
SELECT * FROM table
But what about if you want to delete records that are exact duplicates of each other?
When every field is the same (replica) in more than one record, the easiest way to remove them is:
SELECT * FROM table UNION ;
SELECT * FROM table