当前位置:主页 > 数据库 > Mysql >

mysql更新一个表里的字段等于另一个表某字段的值实例

时间:2021-09-25 08:17:39 | 栏目:Mysql | 点击:

如下所示:

update table1 as z left join table2 as zb on z.zcatId = zb.zcatId set z.zcatName = zb.zcatName where z.zcatName is null; 

您可能感兴趣的文章:

相关文章