Hi all i have this query which checks the hospno and treatdate and shows all records that match.
the sql is this:
SELECT tExternal.HospNo, tExternal.trtDate
FROM tblTreatmentConv RIGHT JOIN tExternal ON (tblTreatmentConv.TreatConversion = tExternal.trtDate) AND (tblTreatmentConv.HOSP_NO = tExternal.HospNo);
How do you create a query to show records that don't match? I think may be something easy but can't think of how to do it. Any advice will be much appreciated
Many thanks
the sql is this:
SELECT tExternal.HospNo, tExternal.trtDate
FROM tblTreatmentConv RIGHT JOIN tExternal ON (tblTreatmentConv.TreatConversion = tExternal.trtDate) AND (tblTreatmentConv.HOSP_NO = tExternal.HospNo);
How do you create a query to show records that don't match? I think may be something easy but can't think of how to do it. Any advice will be much appreciated
Many thanks