Here's the deal. I have two table but I want to include everything in table A that isn't in table B.
I have a list of product numbers in table A and I want to make a list of the one's in table B that haven't been used yet.
SELECT TableA.ProductN umer
FROM Table A Full Join TableB
ON TableA.ProductN umber <> TableB.ProductN umber
I have a list of product numbers in table A and I want to make a list of the one's in table B that haven't been used yet.
SELECT TableA.ProductN umer
FROM Table A Full Join TableB
ON TableA.ProductN umber <> TableB.ProductN umber
Comment