当前位置: 代码迷 >> Sql Server >> 两个表连接更新解决办法
  详细解决方案

两个表连接更新解决办法

热度:39   发布时间:2016-04-27 14:36:54.0
两个表连接更新
我有A表B表
A表字段 spid spbh  
  sp001 1001
  sp002 1002
  sp003 1003

B表字段 spid spbh spbh_new
  sp001 1001 1011
  sp003 1003 1013

当b.spid=a.spid 时,更新A表,得出结果
A表 spid spbh
  sp001 1011
  sp002 1002
  sp003 1013

这个语句怎么写?

------解决方案--------------------
SQL code
update aset a.spbh=b.spbh_newfrom bwhere b.spid=a.spid
------解决方案--------------------
SQL code
update aset a.spbh=b.spbh_newfrom a, bwhere b.spid=a.spid
------解决方案--------------------
探讨
从楼主的数据看,spbh应该也要关联

------解决方案--------------------
SQL code
update A表    set spbh = (select spbh_new from B表 where spid =A表.spid)
  相关解决方案