SQL Queries
For this assignment, use the following database schema: 1) Patient—PatientID, Name, DOB 2) Doctor—DoctorID, Name, MedLicenseNumber, Phone 3) Medication—MedicationID, BrandName, GenericName 4) Prescription—PrescriptionID, Date, PatientID, PrescriberID, MedicationID Specify the SQL queries to retrieve: 1) A list of all doctors. 2) The number of patients that were born before 01/01/1994. 3) The patient information along with…