Can somebody help me with an sql for finding unmatched fields? I cannot use for the time being the find unmatched query wizard since
this is not installed in my computer. I want to find only those products for which the two fields called grosspirce
in both tables do not match.:
My query is the following :
SELECT products.Productid, products.grade, products.grossprice, products1.grossprice
FROM products INNER JOIN products1 ON products.Productid = products1.Productid;
Thank you in advance