L
lynn atkinson
I have a simple query connecting employee details to their contract
information. Why is this not an updatable query? It is a one to many
relationship - an employee can have many contracts.
Can anyone explain simply to me why this cannot be updated? What can I not
see? Is it a design fault?
The sql of this example is
SELECT employeedetails.surname, contractual.[contract type]
FROM employeedetails INNER JOIN contractual ON (employeedetails.[employee ID
new] = contractual.[employee ID]) AND (employeedetails.[employee ID new] =
contractual.[employee ID]);
This is quite fundimental to my database.
Cheers
information. Why is this not an updatable query? It is a one to many
relationship - an employee can have many contracts.
Can anyone explain simply to me why this cannot be updated? What can I not
see? Is it a design fault?
The sql of this example is
SELECT employeedetails.surname, contractual.[contract type]
FROM employeedetails INNER JOIN contractual ON (employeedetails.[employee ID
new] = contractual.[employee ID]) AND (employeedetails.[employee ID new] =
contractual.[employee ID]);
This is quite fundimental to my database.
Cheers