I want to update a column in table A with the value in table B where the value in A matches another column in B
This is what I have, which seems like it would be a valid query but Access is telling me its not an updateable query.
UPDATE PaymentBackup SET PaymentBackup.ClientID = (SELECT tblClient.ClientID FROM Payment,tblClient WHERE Payment.ClientID = tblClient.ClientIDx)
This is what I have, which seems like it would be a valid query but Access is telling me its not an updateable query.
UPDATE PaymentBackup SET PaymentBackup.ClientID = (SELECT tblClient.ClientID FROM Payment,tblClient WHERE Payment.ClientID = tblClient.ClientIDx)