Sep 10, 2008 #1 NBVC Technical User Sep 18, 2006 80 CA Hi, I have 2 tables.. a PART table and an INVENTORY_TRANSACTION table. How would I query all the Parts in the PART table that do no appear in the INVENTORY_TRANSACTION table.... (Both contain PART_ID field). Thanks.
Hi, I have 2 tables.. a PART table and an INVENTORY_TRANSACTION table. How would I query all the Parts in the PART table that do no appear in the INVENTORY_TRANSACTION table.... (Both contain PART_ID field). Thanks.
Sep 10, 2008 1 #2 lbass Technical User Feb 9, 2002 32,816 US Use a left join FROM the Part table TO the inventory transaction table, and then use a record selection formula like this: isnull({inventory_transaction.part_id}) -LB Upvote 0 Downvote
Use a left join FROM the Part table TO the inventory transaction table, and then use a record selection formula like this: isnull({inventory_transaction.part_id}) -LB
Sep 10, 2008 Thread starter #3 NBVC Technical User Sep 18, 2006 80 CA Thank you very much LB... I think it worked! Upvote 0 Downvote