5

试试这个

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

给出错误

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

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

4

1 回答 1

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 ...
于 2012-12-29T14:42:55.820 回答