Note: This is not an inventory controlling system. I am just trying to map which medication given to which patient. I am not considering how many medication packets etc. Just a single medication event
I am having a sudden confusion with database relationships, even after working with them for years. Below is my situation.
I have a table called patient
where it will hold the information of patients. I have another table called medication
where it will hold the medicines prescribed for patient
s.
I want to find the relationship, so I asked the below questions from me.
- Can one patient have many medicine prescribed? - Answer: YES
- Can one prescribed medicine have many patients? - Answer: No (ex: you can't give a patient a paracetamol to drink, take it out and give it to someone else)
I need to create the foreign key of patient
in medication
table. I'm confused, because my answer for 1st question tell me it is one to many
relationship while the answer for 2nd says me it is one to one
relationship.
What is the exact relation when I am planning to add the foreign key of patient
in medication
table?
Below is my structure
It somewhat depends on the kind of structure of your tables.
Example 1
You are in a one to many relationship. Patient
John
can have multiple medications in prescription table.Example 2
This situation is a many-to-many relationship where many patients can have many medications and vice versa. Usually Patient_Medication is called a junction table.