nschroeder
nschroeder
- Local time
- Today, 16:32
- Joined
- Jan 8, 2007
- Messages
- 186
I have an Employees table and a couple of queries, qryEmpNames and qryEmployees. qryEmpNames concatenates the first and last names into a Name field, and qryEmployees links the Employees table with qryEmpNames, linked by employee ID. Why would the data in qryEmployees not be updateable? I've read the Allen Browne article on Why is My Query Read-Only, but I don't see that any of those issues apply here. What am I missing?
Here's the SQL code from qryEmpNames:
And here's qryEmployees:
Thanks in advance.
Here's the SQL code from qryEmpNames:
Code:
SELECT Employees.EmpNum, Employees.EmployeeID, [FirstName] & " " & [LastName] AS Name
FROM Employees;
And here's qryEmployees:
Code:
SELECT [qryEmpNames].Name, Employees.*
FROM Employees LEFT JOIN [qryEmpNames] ON Employees.EmpNum = [qryEmpNames].EmpNum;
Thanks in advance.