I want to update sth abouth 10000 records (change number of the module to its name - name comes from anotheta table) I have used this query
UPDATE problemy SET problemy.modul = (SELECT s_modul.modul FROM s_modul WHERE problemy.modul = s_modul.ID)
in RunSQL macro but I am getting "Operation must use an updatable query" error how to make a proper query that would update field modul in table problemy getting its name from s_modul table
Joanna
UPDATE problemy SET problemy.modul = (SELECT s_modul.modul FROM s_modul WHERE problemy.modul = s_modul.ID)
in RunSQL macro but I am getting "Operation must use an updatable query" error how to make a proper query that would update field modul in table problemy getting its name from s_modul table
Joanna