flaviooooo
Programmer
Hi,
I am having trouble using an updatequery between a table and a query:
when I run this I get the message that I need to use an updatable query.
I know I can workaround this by using a temp-table instead of the query, but frankly I am tired of doing this workaround. Is there really no other way??
Thanks in advance
Kind regards,
Fabian
I am having trouble using an updatequery between a table and a query:
Code:
UPDATE MATERIAAL_DOORGANG INNER JOIN Q_OPM_PER_MAXMATDOORGANG ON
(MATERIAAL_DOORGANG.DOORGANG = Q_OPM_PER_MAXMATDOORGANG.DOORGANG)
AND (MATERIAAL_DOORGANG.MATERIAAL = Q_OPM_PER_MAXMATDOORGANG.[MATERIAL NUMBER])
SET MATERIAAL_DOORGANG.OPMERKING_ID = [Q_OPM_PER_MAXMATDOORGANG]![OpmerkingID]
when I run this I get the message that I need to use an updatable query.
I know I can workaround this by using a temp-table instead of the query, but frankly I am tired of doing this workaround. Is there really no other way??
Thanks in advance
Kind regards,
Fabian