I am trying have text data insert if table1.lastname and table1.firstname <> table2.lastname and table1.firstname without having to do it manually. Is there a way to do it?
I am trying have text data insert if table1.lastname and table1.firstname <> table2.lastname and table1.firstname without having to do it manually. Is there a way to do it?
Can try building a Find Unmatched query (there is a wizard for that) and use that as the source for an INSERT SELECT sql action.
How to attach file: http://www.accessforums.net/showthread.php?t=70301 To provide db: copy, remove confidential data, run compact & repair, zip w/Windows Compression.
Something like:
INSERT INTO tablename(fieldname1, fieldname2) SELECT fieldname1, fieldname2 FROM queryname;
How to attach file: http://www.accessforums.net/showthread.php?t=70301 To provide db: copy, remove confidential data, run compact & repair, zip w/Windows Compression.