mysql update from 关联更新 从一个表字段 到另外一个表字段

mssql 子查询更新

update log set uin= b.uin
from log a,logs b
where a.accountuin = b.accountuin

mysql 不支持 update 子查询更新

update `dede_archives` a inner join `dede_addonarticle` b on a.`id` = b.`aid` set a.`litpic` = b.`picimg1` where a.`id` = b.`aid

你可能感兴趣的:(mysql update from 关联更新 从一个表字段 到另外一个表字段)