Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Get Parts that are not in both tables 1

Status
Not open for further replies.

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.
 
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
 
Thank you very much LB... I think it worked!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top