服务器: 消息 156,级别 15,状态 1,行 1 在关键字 'INNER' 附近有语法...
发布网友
发布时间:2024-10-11 06:51
我来回答
共4个回答
热心网友
时间:2024-11-21 18:27
update 有这样的写法?
你把你的语句改成
update a set a.xx=b.xx
from a inner join b on a.xxx=b.xxxx的格式试下吧,,,
热心网友
时间:2024-11-21 18:22
UPDATE ufsystem..ua_identity
SET iFatherId = b.iFatherId, iChildId = b.iChildId
FROM ufsystem..ua_identity a
INNER JOIN zdt..WH_UA_Identity b
ON (a.cAcc_Id = b.cAcc_Id) AND (a.cVouchType = b.cVouchType)
热心网友
时间:2024-11-21 18:27
不需要“(”和“) ”
UPDATE ufsystem..ua_identity INNER JOIN zdt..WH_UA_Identity
ON ufsystem..ua_identity.cAcc_Id = zdt..WH_UA_Identity.cAcc_Id AND
ufsystem..ua_identity.cVouchType = zdt..WH_UA_Identity.cVouchType
热心网友
时间:2024-11-21 18:25
有这种写法吗?不是应该 set 修改字段 写在 update table 后面,然后再写 join 连接嘛
热心网友
时间:2024-11-21 18:24
update 有这样的写法?
你把你的语句改成
update a set a.xx=b.xx
from a inner join b on a.xxx=b.xxxx的格式试下吧,,,
热心网友
时间:2024-11-21 18:25
不需要“(”和“) ”
UPDATE ufsystem..ua_identity INNER JOIN zdt..WH_UA_Identity
ON ufsystem..ua_identity.cAcc_Id = zdt..WH_UA_Identity.cAcc_Id AND
ufsystem..ua_identity.cVouchType = zdt..WH_UA_Identity.cVouchType
热心网友
时间:2024-11-21 18:28
有这种写法吗?不是应该 set 修改字段 写在 update table 后面,然后再写 join 连接嘛
热心网友
时间:2024-11-21 18:21
UPDATE ufsystem..ua_identity
SET iFatherId = b.iFatherId, iChildId = b.iChildId
FROM ufsystem..ua_identity a
INNER JOIN zdt..WH_UA_Identity b
ON (a.cAcc_Id = b.cAcc_Id) AND (a.cVouchType = b.cVouchType)