|
SELECT wProducts.prID, wProducts.prName, wProducts.prPrice FROM wProducts;
SELECT tblProducts.prID, tblProducts.prName, tblProducts.prPrice FROM tblProducts INNER JOIN WebProducts ON tblProducts.prID = WebProducts.prID WHERE (((tblProducts.prName)<>[WebProducts].[prName])) OR (((tblProducts.prPrice)<>[WebProducts].[prPrice]));