i've run accross this issue in the past but always with much harder queries. trying to update field 5 in table a from field in odbc linked table b.
local tables are created on the fly and this has been working for years. only change is using an alter table statement to add a field to tbla to contain this new data.
any thoughts?
regards,
longhair
Code:
UPDATE tbla INNER JOIN [tblb] ON tbla.[field1] = [tblb].[field2] SET tbla.[field5] = [tblb]![field12];
any thoughts?
regards,
longhair