I have a query that I think is working correctly. But I wanted to make sure for future reference that I am not doing something goofy. Following is the SQL for the query:
Currently, it is not returning any records, which I believe to be correct, but I want to be sure. Actually, new records may appear at some point, but I doubt it will be terribly often.
--
"If to err is human, then I must be some kind of human!" -Me
Code:
INSERT INTO tblOwnersRef ( OwnerID, Owner )
SELECT AllOwners20080807.OwnerID, AllOwners20080807.Owner
FROM AllOwners20080807 INNER JOIN tblOwnersRef ON AllOwners20080807.OwnerID = tblOwnersRef.OwnerID
WHERE (((tblOwnersRef.OwnerID) Is Null));
Currently, it is not returning any records, which I believe to be correct, but I want to be sure. Actually, new records may appear at some point, but I doubt it will be terribly often.
--
"If to err is human, then I must be some kind of human!" -Me