Hi,
Is it possible to write the code below using a sub query and not use JOIN statement?
SELECT Nurse_no, Nurse.Name, Auxilary_No, Patient.Name
FROM Nurse LEFT OUTER JOIN Patient
ON Nurse_no = Agency_Nurse_No;
Any help is grately appreciated.
Ben