update table1 set table1.column1 =(select table2.column1 from table2
where 关联条件)
where exists(select 1 from from table2
where 关联条件);
update table1 set table1.column1 =(select table2.column1 from table2
where 关联条件)
where exists(select 1 from from table2
where 关联条件);