update tab1 set val =
(select val from tab2 where tab1.id = tab2.id)
where exists (select 1 from tab2 where tab1.id = tab2.id)
这样tab2中没有的部分就不会被更新到tab1,但如果tab2中没值的部分,tab1中就应该为空,那就把最后一句去掉,改成
update tab1 set val =
(select val from tab2 where tab1.id = tab2.id)
不管去不去掉最后一句,一旦出现重复,就会报错
有大佬的解决方法是用merge语法
我这里还有个sb方法
update tab1 set val =
(select MAX(val) from tab2 where tab1.id = tab2.id)
where exists (select 1 from tab2 where tab1.id = tab2.id)
如果存在多条也要替换,那多条的值应该是一样的(暂时想不到不同还要替换的情况……),那么随便用哪个都无所谓了吧……
(顺便表示,什么数据类型都能MAX的)
不需要替换的话,就加条件剔除掉吧