G
ges via AccessMonster.com
I have two tables using AcctIDAuto to identify the accounts. When I import
excel file, new AcctIDAuto being added to one table (tblCollectionsInfo). I
try to append new added AcctIDAuto that's in tblCollectionsInfo into
tblCollectionNotes. My syntax as follow:
INSERT INTO tblCollectorNotes ( AcctIDAuto, )
SELECT tblCollectionsInfo.AcctIDAuto, tblCollectorNotes.AcctIDAuto
FROM tblCollectionsInfo LEFT JOIN tblCollectorNotes ON tblCollectionsInfo.
AcctIDAuto = tblCollectorNotes.AcctIDAuto
WHERE (((tblCollectorNotes.AcctIDAuto) Is Null));
Before import, tblCollections info and tblCollectorNotes has 15,000 records.
After import tblCollectionsInfo has 25,000 records and I try to add 10,000
new records that was being added to tblCollectionsInfo into
tblCollectionsNotes.
The above syntax give me an error saying the "number of query value and
destination field is not match".
Can anybody help me with the syntax? THANK YOU in advance for any help.
Ges
excel file, new AcctIDAuto being added to one table (tblCollectionsInfo). I
try to append new added AcctIDAuto that's in tblCollectionsInfo into
tblCollectionNotes. My syntax as follow:
INSERT INTO tblCollectorNotes ( AcctIDAuto, )
SELECT tblCollectionsInfo.AcctIDAuto, tblCollectorNotes.AcctIDAuto
FROM tblCollectionsInfo LEFT JOIN tblCollectorNotes ON tblCollectionsInfo.
AcctIDAuto = tblCollectorNotes.AcctIDAuto
WHERE (((tblCollectorNotes.AcctIDAuto) Is Null));
Before import, tblCollections info and tblCollectorNotes has 15,000 records.
After import tblCollectionsInfo has 25,000 records and I try to add 10,000
new records that was being added to tblCollectionsInfo into
tblCollectionsNotes.
The above syntax give me an error saying the "number of query value and
destination field is not match".
Can anybody help me with the syntax? THANK YOU in advance for any help.
Ges