SarasotaIT
IS-IT--Management
I am trying to increase a field's value in tbl1 by 2 if the same account number exists in tbl2. I think I may be partially there but Access returns an error. Here's what I have...
UPDATE tbl1 SET fld = fld+2
WHERE (SELECT T1.account, T2.account
FROM tbl2 T2, tbl1 T1
WHERE T1.account=T2.account);
Thanks much in advance!
Terry
UPDATE tbl1 SET fld = fld+2
WHERE (SELECT T1.account, T2.account
FROM tbl2 T2, tbl1 T1
WHERE T1.account=T2.account);
Thanks much in advance!
Terry