Hi
I created two versions of the below Access query to update a field based on matching two fields from the table the update field is in against two columns in another table. I am getting an errors in both instances that prevent me from running it. Any ideas?
Paul
update local
set RegistrationID = oracle.MEDIATOR_ID
from local, oracle
where local.FirstName = oracle.FIRST_NAME and local.LastName = oracle.LAST_NAME;
update local
set RegistrationID =
(select oracle.MEDIATOR_ID from oracle
where local.FirstName = oracle.FIRST_NAME and local.LastName = oracle.LAST_NAME);