update from

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

原文地址:https://www.cnblogs.com/qook/p/4895040.html