I have two tables - Ledger and RWV. Both have the primary key RV. I'm trying to update field "Amount" in RWV from the field "Amount" in Ledger, but change no other fields.
Here's what I have that is not returning anything:
Should be so simple, just need another set of eyes. Thanks in advance!Code:UPDATE Ledger LEFT JOIN RWV ON Ledger.RV = RWV.RV SET RWV.Amount = Ledger.Amount WHERE (((RWV.RV)=[Ledger].[RV]));