G
Guest
I need to compare table 1 to table 2 and if different, write the entire row
from table 1 to table 3.
I can read an entire row from table 1 into a recordset using the following
strSQL_in = "select * from table1" ( and i can refer to the columns as
needed)
I have over 70 fields to compare and 100+ fields to write to table 3
how do I write the entire recordset to table 3?
strSQL_out = "insert into table3" + rsd! ( does not work )
TIA
from table 1 to table 3.
I can read an entire row from table 1 into a recordset using the following
strSQL_in = "select * from table1" ( and i can refer to the columns as
needed)
I have over 70 fields to compare and 100+ fields to write to table 3
how do I write the entire recordset to table 3?
strSQL_out = "insert into table3" + rsd! ( does not work )
TIA