K
klf
I have used the query wizard to create a simple unmatched select query which
runs wonderfully and returns the expected 51,000 records. When I use the
same criteria, or try to switch it to a 'make table' query for export, I get
"invalid argument". New to SQL, but the code *looks* okay to me:
SELECT TEST.ID, TEST.PHONENUM, TEST.ORIGFULLAD, TEST.ORIGFULLST,
TEST.ADDRNUM, TEST.COMMUNITY, TEST.COUNTY, TEST.STATE, INTO New_Tbl
FROM TEST LEFT JOIN Old_tbl ON TEST.ID = Old_tbl.ID
WHERE (((Old_tbl.ID) Is Null));
Any suggestions would be appreciated!
runs wonderfully and returns the expected 51,000 records. When I use the
same criteria, or try to switch it to a 'make table' query for export, I get
"invalid argument". New to SQL, but the code *looks* okay to me:
SELECT TEST.ID, TEST.PHONENUM, TEST.ORIGFULLAD, TEST.ORIGFULLST,
TEST.ADDRNUM, TEST.COMMUNITY, TEST.COUNTY, TEST.STATE, INTO New_Tbl
FROM TEST LEFT JOIN Old_tbl ON TEST.ID = Old_tbl.ID
WHERE (((Old_tbl.ID) Is Null));
Any suggestions would be appreciated!