Dаtаbаse Schema Patients(PatientID, FirstName, LastName, BirthDate, Gender, PrimaryPhysicianID)Physicians(PhysicianID, FirstName, LastName, Specialty, DepartmentID, HireDate)Departments(DepartmentID, Name, Lоcatiоn, StaffNumber)Nurses(NurseID, FirstName, LastName, Shift, DepartmentID, SupervisоrID)Treatments(TreatmentID, Name, Description, Cost)PatientTreatments(PatientID, TreatmentID, Date, PhysicianID, NurseID)Appointments(AppointmentID, PatientID, PhysicianID, Date, Time, Purpose)MedicalRecords(RecordID, PatientID, Date, Summary, Diagnosis, TreatmentPlan) Query Find the names of physicians in the department “General Surgery” who have treated patients assisted by “NurseA” (assumed to be a unique first name).