MelissaBerrett
MIS
I have a table named Code and a query TermEmployee. The query produces a calculated field called CountofStatus. I'm trying to get the data from CountofStatus to update the Term field in my Code Table. I wrote this in SQL:
UPDATE Code INNER JOIN TermEmployee ON Code.Term = TermEmployee.CountofStatus SET Code.Term = TermEmployee.CountofStatus;
I get the error msg "operation must use an updatable query", What could be the problem? Thanks for any help.
Mel
UPDATE Code INNER JOIN TermEmployee ON Code.Term = TermEmployee.CountofStatus SET Code.Term = TermEmployee.CountofStatus;
I get the error msg "operation must use an updatable query", What could be the problem? Thanks for any help.
Mel