postmannie
Technical User
SELECT patient_no, room_no, employee_no, department
FROM patient RIGHT OUTER JOIN dentist
ON dentist_no = employee_no
Is there any way to produce a query using UNION for the above statement (no join)
Cheers
PM
FROM patient RIGHT OUTER JOIN dentist
ON dentist_no = employee_no
Is there any way to produce a query using UNION for the above statement (no join)
Cheers
PM