D
damiankinsella
I have used this code to append my records:
INSERT INTO EducationTbl
SELECT *
FROM EducationTbl IN 'C:\ProgramFiles\AMSRepUpdate.mdb';
but I now need to UPDATE the records because some of the data has
altered slightly.
What I need is essentially:
UPDATE INTO EducationTbl
SELECT *
FROM EducationTbl IN 'C:\ProgramFiles\AMSRepUpdate.mdb';
but I do not know how to correctly write this or to build it into the
query design page. Deleting the records then re-inserting them would
cause a lose of data.
Any Help? Even an example of an update from another database would be
useful.
Thanks in advance
Momo
INSERT INTO EducationTbl
SELECT *
FROM EducationTbl IN 'C:\ProgramFiles\AMSRepUpdate.mdb';
but I now need to UPDATE the records because some of the data has
altered slightly.
What I need is essentially:
UPDATE INTO EducationTbl
SELECT *
FROM EducationTbl IN 'C:\ProgramFiles\AMSRepUpdate.mdb';
but I do not know how to correctly write this or to build it into the
query design page. Deleting the records then re-inserting them would
cause a lose of data.
Any Help? Even an example of an update from another database would be
useful.
Thanks in advance
Momo