日期:2014-05-18 浏览次数:20443 次
update a set a.spbh=b.spbh_new from b where b.spid=a.spid
------解决方案--------------------
update a set a.spbh=b.spbh_new from a, b where b.spid=a.spid
------解决方案--------------------
update A表 set spbh = (select spbh_new from B表 where spid =A表.spid)