mysql sql语句 同步,替换
管理员 发布于 6年前   376
//b表中num的数据同步到a表
update cata,catb set cata.num=catb.num where cata.cat_id=catb.cat_id
//把b表中num大于3的catname数据同步到a表的catname 两表id关联
update cata,catb set cata.catname=catb.catname where cata.cat_id=catb.cat_id and catb.num>3
//把id=148 字段为null的值替换成2018-03-02
UPDATE bota_corper SET adddate= case when adddate is null
then '2018-03-02'
else REPLACE(adddate , null , '2018-03-02')
end
where id=148
请勿发布不友善或者负能量的内容。与人为善,比聪明更重要!
该博客于2020-12-7日,后端基于go语言的beego框架开发
前端页面使用Bootstrap可视化布局系统自动生成
是我仿的原来我的TP5框架写的博客,比较粗糙,底下是入口
侯体宗的博客
文章标签
友情链接