I have two tables. tblProduct and tblProductCrossReference. Let's say that tblProduct only has one column (ProductID), and the second table has two columns (OldProductID and NewProductID).
I want to compare all values in the first table to the second one and if I find that tblProduct.ProductID and tblProductCrossReference.OldProductID are equal I would like to replace the value of tblProduct.ProductID with tblProductCrossReference.NewProductID.
Can someone help me out with this? Thanks in advance.
I want to compare all values in the first table to the second one and if I find that tblProduct.ProductID and tblProductCrossReference.OldProductID are equal I would like to replace the value of tblProduct.ProductID with tblProductCrossReference.NewProductID.
Can someone help me out with this? Thanks in advance.