以前只会写一些简单的updaet语句,比如updae table set c1=’xxx’ 之类的
今天遇到一个数据订正的问题,项目背景如下,有个表a,有两个字段a1,a2还有一个关联表b,其中也有两个字段,b1和b2。其中a2和b2是关联的,想把a中的字段a1更新成b中的b1
理论上sql应该挺好写的,但是在oralce中实现了半天一直报语法错误。而且确实还有些小小细节没有注意到。
首先上测试数据
表1,zz_test1
表2,zz_test2
要把表一的text更新成表二的text1值,对应的sql如下:
update zz_test1 t1 set t1."text" = ( select t2."text1" from zz_test2 t2 where t2."pid"=t1."id" ) where exists ( select 1 from zz_test2 t2 where t2."pid"=t1."id" )
后面的where条件表示一个限制条件,只更新那些符合条件的数据,也可以写成
update zz_test1 t1 set t1."text" = ( select t2."text1" from zz_test2 t2 where t2."pid"=t1."id" ) where t1."id" in (select "pid" from zz_test2 )
另外还有一种merge的写法,对应的sql如下:
merge into zz_test1 t1 using zz_test2 t2 on (t1."id" =t2."pid") when matched then update set t1."text"=t2."text1"
为了避免t2中有多条数据对应t1中的数据,可以把sql改成如下的方式:
merge into zz_test1 t1 using ( select * from zz_test2 x where x. rowid = (select max(y.rowid) from zz_test2 y where x."id" = y."id" ) ) t2 on (t1."id" = t2."pid") when matched then update set t1."text" = t2."text1"
还有一种update from 的语法,经过测试在oracle和mysql中不适用
总结一下,项目中尝尝需要把一张表的字段更新到另一张表中的某一个字段。可以使用update语法,并要做好限定。会使用merge的语法,另外还有一种merge的语法也可以,update from 不能再oracle和mysql中使用。