R
ragtopcaddy via AccessMonster.com
In the following generic example, why is the query result not updatable?
There are 2 tables in the query. tblA has 5 fields and I'd like to update
field4 with a value returned from a corresponding field in tblB. I've
presented it here as a select query because I can't update the resulting
records in the select query, either. I assume if I can figure out how to
update the select query manually, I'll be able to run the update query.
SELECT tblA.field4, tblA.field5
FROM tblA INNER JOIN tblB ON (tblA.field1 = tblB.field1) AND (tblA.field2 =
tblB.field2) AND (tblA.field3 = tblB.field3);
Thanks,
Bill R
There are 2 tables in the query. tblA has 5 fields and I'd like to update
field4 with a value returned from a corresponding field in tblB. I've
presented it here as a select query because I can't update the resulting
records in the select query, either. I assume if I can figure out how to
update the select query manually, I'll be able to run the update query.
SELECT tblA.field4, tblA.field5
FROM tblA INNER JOIN tblB ON (tblA.field1 = tblB.field1) AND (tblA.field2 =
tblB.field2) AND (tblA.field3 = tblB.field3);
Thanks,
Bill R