G
Guest
Trying to delete all records for an employee in the "Training Record"
database based on criteria from the "Employees" database. Both tables have
an "Employee ID" field to match them. I get a "Could not delete from
specified tables" message. Any idea why this won't won't work? And if it
just won't do it, any suggestions how to accomplish the same thing?
DELETE Employees.[Employee ID], [Training Record].*
FROM Employees INNER JOIN [Training Record] ON (Employees.[Employee ID] =
[Training Record].[Employee Id]) AND (Employees.[Employee ID] = [Training
Record].[Employee Id]) AND (Employees.[Employee ID] = [Training
Record].[Employee Id])
WHERE (((Employees.[Employee ID])="118474"));
database based on criteria from the "Employees" database. Both tables have
an "Employee ID" field to match them. I get a "Could not delete from
specified tables" message. Any idea why this won't won't work? And if it
just won't do it, any suggestions how to accomplish the same thing?
DELETE Employees.[Employee ID], [Training Record].*
FROM Employees INNER JOIN [Training Record] ON (Employees.[Employee ID] =
[Training Record].[Employee Id]) AND (Employees.[Employee ID] = [Training
Record].[Employee Id]) AND (Employees.[Employee ID] = [Training
Record].[Employee Id])
WHERE (((Employees.[Employee ID])="118474"));