我有以下数据:
SectorKey Sector foo
1 A null
2 B null
... ... ...
1 null a
2 null b
2 null c
1 null d
2 null e
... ... ...
我希望根据sectorKey的值为null时更新列Sector,即当SectorKey为1时我希望Sector为'A',而当SectorKey为2时我想要'B'
我尝试过这个问题:
update tbFoo
set Sector=A.sector
from tbFoo A INNER JOIN tbFoo B
ON A.SectorKey=B.SectorKey
and A.Sector is not null
and B.Sector is null
并收到此错误消息:
表'tbFoo'含糊不清。
我试过别名第一个tbFoo,但它似乎不是一个有效的语法。我不明白为什么SQLServer抱怨模糊的命名,因为我的所有表都是别名。
我找到了this thread,我觉得我做的事情跟投票的答案完全一样。我也尝试了在接受的答案中建议的查询:
update tbFoo A
set Sector =
(select Sector from tbFoo
where A.SectorKey=SectorKey and Sector is not null)
然后SQLServer抱怨“A”
附近的语法不正确关于可能发生的事情的任何想法,并解决这个问题?我正在使用SQLServer 2008。
编辑我没有显示我的表的总数据。我不只有两个案例(A和B),而是几千个案例。所以一个明确的案例不是一个选项
答案 0 :(得分:22)
使用更新查询第一部分中的别名:
update B
set Sector=A.sector
from tbFoo A INNER JOIN tbFoo B
ON A.SectorKey=B.SectorKey
and A.Sector is not null
and B.Sector is null
否则它不知道要更新的表的哪个实例。
答案 1 :(得分:1)
尝试使用CTE并更改别名的字段名称:
WITH CTE_TBFOO(SETOR)
AS
(
SELECT Sector
FROM tbFoo T1
)
update tbFoo
set Sector= A.SETOR
from CTE_TBFOO A
WHERE A.SETOR = SectorKey
and A.SETOR is not null
and B.Sector is null
答案 2 :(得分:0)
update
tbFoo
set
Sector = (select tf.Sector from tbFoo tf where
tbFoo.SectorKey = tf.SectorKey and
tf.Sector is not null)
应该工作