我有一个临时表,其中有一个名为 schedulesTotal 的字段。我想用基于选择的计数来更新它。但我不确定我的逻辑是否正确。
这是我的代码
UPDATE [#tempMike]
SET schedulesTotal = total
(
SELECT ta.accountid,
COUNT(New_NextCallDueDate) as total FROM [#tempMike] AS ta
INNER JOIN PhoneCall AS p WITH (nolock) ON ta.accountid = p.regardingobjectid
group by ta.accountid
)
如果我自己运行选择部分,我会得到 1 个帐户编号以及正确的总值我现在只想用选择语句返回的总值更新临时表
这是我目前得到的错误
Msg 156, Level 15, State 1, Line 4
Incorrect syntax near the keyword 'SELECT'.
Msg 102, Level 15, State 1, Line 8
Incorrect syntax near ')'.
谢谢你的帮助 :)