update table1 t1 left join table2 t2 on t1.key=t2.key set
t1.field1=t2.field1,
t1.field2=t2.field2,
t1.field3=t2.field3
where t1.field4 is null and t2.field4 > '2017-04-27';
MySQL使用一张表的字段更新另一张表的字段
本文介绍了一种使用SQL的左连接联合查询方法,通过更新table1的字段field1、field2和field3为table2中对应字段的值,条件是table1的field4为空且table2的field4大于'2017-04-27'。

被折叠的 条评论
为什么被折叠?



