B
Brian
I tring to build a query that will return all product
ID's from details table that are not in the master
product table. Can someone tell me how this should be
done? In Oracle it would simply look like this:
SELECT DISTINCT TBL_Details.ProdCd
FROM TBL_Details
WHERE TBL_Details.ProdCd Not In (SELECT
TBL_ProductMst.ProdCd FROM TBL_ProductMst);
ID's from details table that are not in the master
product table. Can someone tell me how this should be
done? In Oracle it would simply look like this:
SELECT DISTINCT TBL_Details.ProdCd
FROM TBL_Details
WHERE TBL_Details.ProdCd Not In (SELECT
TBL_ProductMst.ProdCd FROM TBL_ProductMst);