E
Evan Miller
I have a query which is taking a while - and maybe that's ok, but I wanted
to make sure.
I have a table L which contains roughly 73000 records. I have another table
M which contains roughly 11000 records. Both tables have an ID column (F1
in M and code in L). I want to find a list of M records that dont have a
match in L.
The query I'm running is:
SELECT M.F1
FROM M
WHERE M.F1 not in (select code from L);
L.code has a unique index. M.F1 has a non-unique index.
Thoughts?
Thanks,
Evan
to make sure.
I have a table L which contains roughly 73000 records. I have another table
M which contains roughly 11000 records. Both tables have an ID column (F1
in M and code in L). I want to find a list of M records that dont have a
match in L.
The query I'm running is:
SELECT M.F1
FROM M
WHERE M.F1 not in (select code from L);
L.code has a unique index. M.F1 has a non-unique index.
Thoughts?
Thanks,
Evan