
Originally Posted by
KingOf206
I am putting together a "Clients" table and I am wanting some advice on what is the best way to handle Clients with the same name.
For example:
Here are a few fields from my "Clients table":
ClientID
Fname
Mname
Lname
DateOfBirth
I was thinking of making a unique index for first and last, but then i thought, what if I come across 2 John Smith's?
I am sure there is a professional way of handling this, but Im not sure what the norm is.
-SHould I make a unique index for Fname, Mname, & Lname?
-SHould I make a unique index for Fname, Lname, & DateOfBirth?
I would like to know what is the norm when storing people in a table and the best way to prevent duplicate clients from being entered.