I'm new to databases and I'm trying to run an update query whose pseudo code looks like the following: Update the last entry of TableA.ColumnA using the value in the last entry of TableB.ColumnB
I tried to do the following code:
UPDATE TableA
SET TableA.ColumnA = (Select Last (ColumnB) from TableB )
WHERE (((TableA.ColumnA)=(Select LAST(ColumnA) from TableA)));
But I get an error from Access that says "operation must use an updateable query".
I would appreciate any guidance or help.