I want to find only records that exist in one table, that don't exist in another table. The part I'm struggling with is that one item can have multiple variations.
Example Table one
ItemNumber | VendorName
1 | Frito Lay
1 | Joe's Chips
1 | Chips Galore
Example Table two
Item Number | Vendor Name
1 | Frito Lay
1 | Joe's Chips
I'm looking to return only the records that exist in table one that don't exist in table two. The tables are identical in schema btw.
The record I'm looking to return is 1, Chips Galore
I am using SQL Server 2008.