晚上大家,

其实已经是晚上了。晚上11点左右。我的大脑正在关闭,我需要一些帮助才能完成并回家:)

我有两个表 - 表 a 和表 b。
当其他两个字段匹配时,我需要使用表 b 中字段的值更新表 a 中的字段。这些表没有每条记录的唯一 ID :(

基本上,我想这样做:

update a
set importantField =
(select b.importantfield
from b
where a.matchfield = b.matchfield
and a.matchfield2 = b.matchfield2
)
where a.matchfield = b.matchfield
and a.matchfield2 = b.matchfield2

或者至少......我认为这就是我想做的......

有人可以帮我吗?

最佳答案

您可以通过加入更新来执行此操作:

Update a
Set a.importantField = b.importantField
From a Join b
  On a.matchfield = b.matchfield
  And a.matchfield2 = b.matchfield2

关于sql - 从表 b 更新表 a,其中(条件),我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/2158681/

10-09 16:57