In: Computer Science
The following database table describes a hospital containing physicians and the patients they had appointments with.
Physician ID |
Physician Name |
Patient Name |
Appointment ID |
Appointment Date |
Patient Phone Number |
Patient Symptoms |
Patient Email |
Physician Phone Number |
a) Functional Dependencies in the given database table explained below
b) The given table above has been normalized in 3NF below
Physician [ Physician_ID, Physician Name ]
Patient [ Patient_ID, Patient_Name, Patient_Phone_Number, Patient_Email, Patient_Symptoms ]
Appointment [ Appointment_ID, Appointment_Date, Patient_ID, Physician_ID ]
Note : Primary key attributes are underlined . Foreign keys are in italics