I am appending a field from one table to another and it will not work. It is telling me that it either has violations or duplicate output destination.
When I run it through as a Select Query the information is correct, but as soon as I make it an Append Query it will not work.
That is the SQL for the Append Query, what am I doing wrong?
Thank you for your help!!
When I run it through as a Select Query the information is correct, but as soon as I make it an Append Query it will not work.
Code:
INSERT INTO tblEmp ( EmpType )
SELECT tblEmp.*, tblEmpInfo.EmpTypes
FROM tblEmp INNER JOIN tblEmpInfo ON tblEmp.EmployeeID = tblEmpInfo.EmpIDFK;
That is the SQL for the Append Query, what am I doing wrong?
Thank you for your help!!