本文介绍了错误:无法绑定多部分标识符.的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

with tempcte(cj_PaymentMode,cj_Chequeorddno,cj_Chequeordddate,cj_Bankname,cj_BankBranch,cj_Branchaddress)
as
(
select cj_PaymentMode,cj_Chequeorddno,cj_Chequeordddate,cj_Bankname,cj_BankBranch,cj_Branchaddress from cj_Invoicedetails where cj_TransactionID = 'AX01'
)
update @checkorder set cj_PaymentType =tempcte.cj_PaymentMode,cj_Chequeddno =tempcte.cj_Chequeorddno,cj_Chequedddate =tempcte.cj_Chequeordddate,cj_Bankname =tempcte.cj_Bankname,cj_Bankloc =tempcte.cj_BankBranch,cj_Branchaddr =tempcte.cj_Branchaddress where cj_TransactionID = 'AX01'


执行上述查询时,出现以下错误.
无法绑定多部分标识符"tempcte.cj_PaymentMode".

我该如何解决?


While executing the above query i''m getting the following error.
The multi-part identifier "tempcte.cj_PaymentMode" could not be bound.

How can I solve this ?

推荐答案


这篇关于错误:无法绑定多部分标识符.的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-10 23:47