G
Guest
I want to update my table of items and I want to update it with new items.
The table STAGEItems holds all items - new and old. To find the new ones I
have used this query which doesn't work any more:
SELECT STAGEItems.ItemNo, STAGEItems.CostPrice
FROM STAGEItems
WHERE STAGEItems.ItemNo Not In(Select ItemNo from tblItems);
Result: 0 rows !
So, I had to rewrite the query to use an outer join between the tables and
the criteria Is Null to find the new recs.
When has the Not In (Select...) become unreliable?
I'm running Windows XP Pro SP2 Build 2600 and Access 10.2627.2625
The table STAGEItems holds all items - new and old. To find the new ones I
have used this query which doesn't work any more:
SELECT STAGEItems.ItemNo, STAGEItems.CostPrice
FROM STAGEItems
WHERE STAGEItems.ItemNo Not In(Select ItemNo from tblItems);
Result: 0 rows !
So, I had to rewrite the query to use an outer join between the tables and
the criteria Is Null to find the new recs.
When has the Not In (Select...) become unreliable?
I'm running Windows XP Pro SP2 Build 2600 and Access 10.2627.2625