G
Guest
Here is an Update statement:
UPDATE Sample, Main
SET Main.State = Sample.State, Main.ST = Sample.ST
WHERE Main.BU=Sample.BU And Main.Desc=Sample.Desc ;
How come the update is not working correctly?
For some reason it updates with the values from the first row and not on the
Where clause?
Thanks in advance,
UPDATE Sample, Main
SET Main.State = Sample.State, Main.ST = Sample.ST
WHERE Main.BU=Sample.BU And Main.Desc=Sample.Desc ;
How come the update is not working correctly?
For some reason it updates with the values from the first row and not on the
Where clause?
Thanks in advance,