L
ljubo lecic via AccessMonster.com
Is it possible to write SQL update query that updates data in TABLE1 based
on data in TABLE2?
For example I need something like
this is incorrect
but shows what I would like to do)
update table1
set amount = amount + ( select amount
from table2
where id = table1.id)
on data in TABLE2?
For example I need something like

but shows what I would like to do)
update table1
set amount = amount + ( select amount
from table2
where id = table1.id)