Greeting,
I have these three tables named - person, employee, customer. What SQL relationship should I use with the following criterion: 1. Person holds the preliminary data of the other two tables. 2. No employee-person can be customer-person.
To add more, I'm designing this with MySQL.
Should I use 1-1 or 1-* to the relationship of person->employee and person->customer? Your reply is higly appreciated.
Thanks!