update a field in one table from another field

E

Earl Takasaki

Is there a simple way to update a field in one table from a field in another
table? The SQL that works in SQL Server doesn't seem to work in access...

update tbl1 T
set T.field = S.field
from T inner join S on T.field = s.field
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top