A
alex
Hello Experts,
I have an Append query that takes data from one table and puts it into
another.
I only want the query to insert rows, however, where two records are
distinct.
I've tried using the QBE and writing some SQL code.
Something like this:
Insert into Table_A
Select Table_B.*
Table_A.cust_no <> Table_B.cust_no
And
Table_A.empl_no <> Table_B.empl_no
Does anyone have any ideas?
I'm basically trying to use an Append query to back up a table. I
only want the query, however, to append new records.
alex
I have an Append query that takes data from one table and puts it into
another.
I only want the query to insert rows, however, where two records are
distinct.
I've tried using the QBE and writing some SQL code.
Something like this:
Insert into Table_A
Select Table_B.*
WhereFrom Table_B
Table_A.cust_no <> Table_B.cust_no
And
Table_A.empl_no <> Table_B.empl_no
Does anyone have any ideas?
I'm basically trying to use an Append query to back up a table. I
only want the query, however, to append new records.
alex