无法绑定多部分标识符

Hun*_*eez 5 sql inner-join sql-server-2008 multiple-select-query

试试这个

select tblPersonalInfo.companyname, tblJobBudget.title,tblJobBudget.lastmodifiedby,
tblJobAdv.advtitle, tblJobAdv.userId,       
tblApplication.advid, tblApplication.position
from tblJobAdv 
inner join tblApplication
ON tblJobAdv.advid = tblApplication.advid
inner join tblPersonalInfo
On tblJobBudget.lastmodifiedby = tblPersonalInfo.userid
Run Code Online (Sandbox Code Playgroud)

给出错误

Msg 4104, Level 16, State 1, Line 8
The multi-part identifier "tblJobBudget.lastmodifiedby" could not be bound.
Msg 4104, Level 16, State 1, Line 2
The multi-part identifier "tblJobBudget.title" could not be bound.
Msg 4104, Level 16, State 1, Line 2
Run Code Online (Sandbox Code Playgroud)

无法绑定多部分标识符“tblJobBudget.lastmodifiedby”。

dan*_*era 5

这是因为没有任何带有tblJobBudget标识符的表或表别名。

你的表是:

  • tblJobAdv
  • tblApplication
  • tblPersonalInfo

但不是:

  • tblJobBudget

如果您需要表中的列,tblJobBudget则应包含tblJobBudget在带有join子句的表中:

from       tblJobAdv 
inner join tblApplication
   ON tblJobAdv.advid = tblApplication.advid
inner join tblJobBudget                              <--here
   ON ...
inner join tblPersonalInfo
   ON ...
Run Code Online (Sandbox Code Playgroud)