M
Mark
Hi All,
I have an issue with a query running long (Fig 1). Is Fig 2 doing the same
thing? It runs much faster, but just wanted to make sure it is doing the
same thing. Thanks!
Fig 1
select AudID
FROM LateErrorHistory2
WHERE (LateErrorHistory2.AudID Not In (select distinct AudID from
TblEmployeeAudit where AudID <> NULL));
Fig 2
SELECT AudID
FROM LateErrorHistory2 LEFT JOIN TblEmployeeAudit ON LateErrorHistory2.AudID
= TblEmployeeAudit.AudID
WHERE (((TblEmployeeAudit.AudID) Is Null));
I have an issue with a query running long (Fig 1). Is Fig 2 doing the same
thing? It runs much faster, but just wanted to make sure it is doing the
same thing. Thanks!
Fig 1
select AudID
FROM LateErrorHistory2
WHERE (LateErrorHistory2.AudID Not In (select distinct AudID from
TblEmployeeAudit where AudID <> NULL));
Fig 2
SELECT AudID
FROM LateErrorHistory2 LEFT JOIN TblEmployeeAudit ON LateErrorHistory2.AudID
= TblEmployeeAudit.AudID
WHERE (((TblEmployeeAudit.AudID) Is Null));