I've got a table with duplicates in M$ Access, like:
NAME
----------------
Charlie
Anderson Silva
Minotauro
Cigano
Sonnen
Charlie
Charlie
Minotauro
Anderson Silva
How could I delete the duplicates on this table and leave only each unique name?
Something like:
NAME
----------------
Charlie
Anderson Silva
Minotauro
Cigano
Sonnen
Is just about using a SELECT inside a a DELETE that Groups By "NAME"? If yes, how would it be? Thanks!