R
robert.bezdicek
I cannot seem to find out how to update columns in table
(a) from table (b) in Access 2002. I do it rather simply
in SQLServer however I am having trouble doing it in
JETSQL.
The SQLServer SQL I am trying to simulate in Access looks
like this:
UPDATE t
SET t.bkup = s.bkup, t.bkup_ver = s.bkup_ver
FROM match_hdw_billable t, TSM s
WHERE t.hostname = s.hostname
GO
(a) from table (b) in Access 2002. I do it rather simply
in SQLServer however I am having trouble doing it in
JETSQL.
The SQLServer SQL I am trying to simulate in Access looks
like this:
UPDATE t
SET t.bkup = s.bkup, t.bkup_ver = s.bkup_ver
FROM match_hdw_billable t, TSM s
WHERE t.hostname = s.hostname
GO