MS Access 2013在Insert Into中选择显示输入弹出窗口而不是查询

时间:2015-10-15 22:07:59

标签: sql ms-access sql-insert ms-access-2013

我似乎无法弄清楚为什么这个SQL代码显示输入弹出窗口而不是插入第二个表中的数据。我做错了吗?

INSERT INTO tblThroughputCalculations ([Estimated Total]) 
SELECT tblLocations.[Total Starting] FROM tblLocations 
WHERE ID=tblThroughputCalculations.[Incident Name]

输入弹出窗口要求tblThroughputCalculations.[Incident Name]

的值

1 个答案:

答案 0 :(得分:0)

似乎 tblThroughputCalculations 表中没有名为事件名称的字段。

检查表中的字段是否没有空格或命名方式不同。

现在我考虑一下,我认为你的查询是错误的 - 你的where子句中有tblThroughputCalculations但它没有加入tbllocations。