M
Michel Peeters
I have following query:
DELETE tblLosplaats.LosplAn, *
FROM tblLosplaats
WHERE (((tblLosplaats.LosplAn) Not In (SELECT LosplAn from tblAfname)));
tblAfname has about 70000 records.
tblLosplaats has about 2000 records.
The query works, but it takes about 35 minutes.
How can I improve the speed?
Michel
DELETE tblLosplaats.LosplAn, *
FROM tblLosplaats
WHERE (((tblLosplaats.LosplAn) Not In (SELECT LosplAn from tblAfname)));
tblAfname has about 70000 records.
tblLosplaats has about 2000 records.
The query works, but it takes about 35 minutes.
How can I improve the speed?
Michel