互相可以关联的是a表的bnum字段与B表的bnum字段对应。
我现在想把B表中的qiantity字段更新到A表对应的记录的newqiantity字段。
这个SQL语句该如何实现??
急!!!!!
3 个解决方案
#1
update A
set newqiantity=B.qiantity
from A,B
where A.bnum=B.bnum
set newqiantity=B.qiantity
from A,B
where A.bnum=B.bnum
#2
update a set newqiantity=(select qiantity from b where a.bnum=b.bnum)
#3
谢谢,根据你们的提示,自己完美解决了
#1
update A
set newqiantity=B.qiantity
from A,B
where A.bnum=B.bnum
set newqiantity=B.qiantity
from A,B
where A.bnum=B.bnum
#2
update a set newqiantity=(select qiantity from b where a.bnum=b.bnum)
#3
谢谢,根据你们的提示,自己完美解决了