I need to update an MS Access 2003 database table based on a condition
I tried I tried
update tblA set Fld1 = B.Fld1 from tblA A inner join tblB B on A.Fld2 = B.Fld2 where B.Fld3 not in ( '000' , '001')
Also I tried options from following (It works for oracle. But not for Access)
https://www.experts-exchange.com/questions/29083921/update-Oracle-11g-table-tblA-based-on-a-condiion-on-tblA-and-tbl2.html