We design this database to track our customer database but I feel it is little complicated design I feel it can be more simple can someone give some advice for design?


|
We design this database to track our customer database but I feel it is little complicated design I feel it can be more simple can someone give some advice for design?
|
||||
|
If simplicity is the key point here, I'd suggest you collapse your customer-related address type information into a single table like so :
The contact_type field can then be tagged as |
|||||||||||
|
|
Some thoughts on this diagram:
|
|||
|
|
Another partial solution is to use a table of contacts: a CUSTOMER has CONTACTS (one to many); each CONTACT might have several PHONE numbers (and even then, you'd only need one mobile number, one home number, one work number and one fax number) but only one EMAIL address. |
|||
|
|
phone_typeand store H, M or O for the type. For the email, one customer will have more than one email? – Bhrugesh Patel Oct 3 '12 at 15:08