Hello, I am new here and I am going to jump righ into a design question and would like your suggestions/comments.
First of, the database is MySQL.
Here is the basic concept.
I have three tables that I am concerned about.
ContactType, Contacts, and Organizations
ContactType -> ID,Type,Description
Contacts -> ID,OrgID,FName,LName (etc)
Organizations -> ID,OrgName,OrgDesc
Now, I am not concerend in regards to that, but there is a situation that has come up where we may need another clients/contact table, so basically a "client" table and a "user" table, but there are times when the user is also a client. Is ther eany benifit to doing it this way...or should I just leave them in the structure I already have. I am not fond of the idea of have two tables that hold the same data just because they are temporary or not a client......
Please ask questions if I have been unclear, and I will reword my question....thanks again..
C