我有一个查询,它在表单中查找信息并返回数据。当我作为选择查询运行它时,它返回正确的信息。但是,当我尝试转入更新查询时,它会将ID插入数据中。我不明白为什么会发生变化。
SELECT查询:
var sitetran_url_type = 'hash';
INSERT INTO查询:
SELECT Templates.Shift, Templates.Supervisor,
forms.[Enter Production].[production Date] AS Expr1,
Templates.[Work Center]
FROM Templates
WHERE (((Templates.Shift)=[Forms]![Enter Production]![Production Shift])
AND ((Templates.Supervisor)=[Forms]![Enter Production]![Supervisor]));