I have a query displaying unmatched records.
I would like to delete the unmatched records that appear in tbl_Job_Access. Can I do it by modifying this query? It would be nice to complete this in one step.
Thank you,
Code:
SELECT tbl_Job_Access.Job_No
FROM tbl_Job_Access LEFT JOIN CMSqry_JCPDSC
ON tbl_Job_Access.Job_No = CMSqry_JCPDSC.JOB_NO
WHERE (
((CMSqry_JCPDSC.JOB_NO) Is Null)
);
I would like to delete the unmatched records that appear in tbl_Job_Access. Can I do it by modifying this query? It would be nice to complete this in one step.
Thank you,