I am trying to update a table (DMS_TEST_LOAD
) based on two other tables (TDCE_NE
and TDCE_NE_COMP
). Any idea what is wrong with the below query? I keep getting the useless "Syntax error in UPDATE statement." error from Access. Thanks in advance.
UPDATE DMS_TEST_LOAD AS DMS
((INNER JOIN TDCE_NE_COMP AS COMP
ON COMP.[NAME] LIKE DMS.[Trunk Group Number (TGN)] AND COMP.[NE_COMP_TYPE_ID]=421)
INNER JOIN TDCE_NE AS NE ON NE.[ID]=COMP.[NE_ID] AND NE.[NAME]=DMS.[Office])
SET DMS.[Char Parm 1 (Trk Dir)] = COMP.[CHAR_PARM1];