Hi, I have a database with three different groups of people: Physicians, Patients and Facilitators. I have a table for each. However, it's possible that any of these people can have multiple phone numbers. So I've created a Table (PhoneID | PersonID | PhoneNumber) where personID is either PhysicianID, PatientID or FacilitatorID - i.e. one table holds all the phone numbers.
The ID for Physicians, Patients and Facilitators are all generated using autonumber. I had though that by changing the format of PatientID to "Pt"0 I could give the IDs from each table a unique prefix, ensuring that all PersonIDs are unique to a single person. But that isn't doing what I thought it was. It only changes the display, not the actual field. Please can someone suggest a method of making sure PersonID can relate to one person out of the combined Physicians, Patients and Facilitators? OR should I have three tables for phone numbers, three for emails, three for faxes etc.?
Many thanks