I have the following query that works great except it is too restrictive:
SELECT sr.AssignedTech
, i.image
FROM ScheduleRequest sr
, images i
WHERE JobStatus != 0
AND ScheduleDateExact IS NOT NULL
AND ID IS NOT NULL
AND RecordType != 2
AND JobStatus != 1
AND sr.AssignedTech = i.empno
If there is no match between ScheduleRequest.AssignedTech=images.empno then the record is not selected.
How do I display records even where this specific condition is not met? I tried to change it to OR but that did not work.