Hello all,
I had this query working for 2 years with no problem and now, all of a sudden it can't find the records anylonger.
The Table "WWTester" has 17 records. I have a query that reads:
SELECT WWTESTER.homephone, WWTESTER.firstname, WWTESTER.lastname
FROM WWTESTER
WHERE (((WWTESTER.homephone) In (SELECT Homephone FROM guesttrack_clean)));
The Table "guesttrack_clean" is another table used just to compare data. This query above retrieves me 5 records and the records are perfectly fine.
Now, I have another query that does the opposite, like that:
SELECT WWTESTER.homephone, WWTESTER.firstname, WWTESTER.lastname
FROM WWTESTER
WHERE (((WWTESTER.homephone) Not In (SELECT Homephone FROM guesttrack_clean)));
And thats where the problem is.. Its not giving me any records at all. Should give me 12 records Correct? Exactly the records not in the first query I listed above.
Any clues...
Thanks a lot!
DBWEB
I had this query working for 2 years with no problem and now, all of a sudden it can't find the records anylonger.
The Table "WWTester" has 17 records. I have a query that reads:
SELECT WWTESTER.homephone, WWTESTER.firstname, WWTESTER.lastname
FROM WWTESTER
WHERE (((WWTESTER.homephone) In (SELECT Homephone FROM guesttrack_clean)));
The Table "guesttrack_clean" is another table used just to compare data. This query above retrieves me 5 records and the records are perfectly fine.
Now, I have another query that does the opposite, like that:
SELECT WWTESTER.homephone, WWTESTER.firstname, WWTESTER.lastname
FROM WWTESTER
WHERE (((WWTESTER.homephone) Not In (SELECT Homephone FROM guesttrack_clean)));
And thats where the problem is.. Its not giving me any records at all. Should give me 12 records Correct? Exactly the records not in the first query I listed above.
Any clues...
Thanks a lot!
DBWEB