Hi !
My "Clients" table contains among others the following fields: "Name", "Address", "ID", "Phone". The Primary key is set to none of these.
I'd like each client to show only once in that table but this doesnt happen. Some clients' names appear twice or more an so the phone, id etc..
i want to "clean" that table wherby locating the "doubles" and erase unwanted record.
My question is: How do i locate those ambigiuos records?
"Name" for example. I could "Order by name" but i cannot make a survey of 10000 records reading it manually. i want SQL to tell me if it finds two identical names or two identical phones, "ID" etc..
Your aid is a relief for me...
My "Clients" table contains among others the following fields: "Name", "Address", "ID", "Phone". The Primary key is set to none of these.
I'd like each client to show only once in that table but this doesnt happen. Some clients' names appear twice or more an so the phone, id etc..
i want to "clean" that table wherby locating the "doubles" and erase unwanted record.
My question is: How do i locate those ambigiuos records?
"Name" for example. I could "Order by name" but i cannot make a survey of 10000 records reading it manually. i want SQL to tell me if it finds two identical names or two identical phones, "ID" etc..
Your aid is a relief for me...