mysql更新一个表里的字段等于另一个表某字段的值实例
程序员文章站
2023-12-03 16:11:52
如下所示:
update table1 as z left join table2 as zb on z.zcatid = zb.zcatid set z.zca...
如下所示:
update table1 as z left join table2 as zb on z.zcatid = zb.zcatid set z.zcatname = zb.zcatname where z.zcatname is null;
以上这篇mysql更新一个表里的字段等于另一个表某字段的值实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。
下一篇: 基于vue实现一个禅道主页拖拽效果