Hey Thoey,
Okay, I have been mucking about with it, but isn't an update actually INSERT INTO?
I had:
INSERT INTO [Monthly Import].[Manager ID] FROM Manager.[Manager ID] WHERE Manager.[Manager Name] = Manager.[Manager Name] AND ... AND ...
Except it doesn't seem to work, I keep on getting syntax errors. I am also having conceptual difficulty understanding the actual execution of the code. For example,
Does it FIRST find all entries where Manager.Name = Monthly Import.Name (for eg), THEN take Manager.ID (from that record in Manager where the condition holds true, and then PUT that value INTO the Monthly Import.Manager ID field?
Also having a bit of difficulty with the syntax, is there any where I can go to read up on the exact syntax (use of brackets, parenthesis and punctuation for JET SQL)?
Could someone explain the logic.. it just has implications, like if you run a sub-query, does that execute FIRST, and if so, do you put the subquery after WHERE? And what logic purpose does EXISTS serve? I have read about it, but not quite sure... does it mean that "perform all above instructions if this subquery returns a record?" Or does it mean perform these instructions on only unqie records it returns, or perform these instructions on ALL instructions it returns?
I guess I'd probably have a better understanding if somebody just described the execution logic.
THanks!
Nathan