the syntax you want is
PHP Code:
update table1
, table2
set table1.par1 = table2.par1
where table1.id = table2.id
unfortunately, you must be on 4.0 to use it
in 3.9 i think your only choice is to do a query, get the table2.par1 value, and use that in a simple update of table1