gpt4 book ai didi

sql - 从表 b 更新表 a 其中(条件)

转载 作者:行者123 更新时间:2023-12-02 14:54:31 27 4
gpt4 key购买 nike

大家晚上好

其实,已经是晚上了。晚上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/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com