I have three tables, table 1 'ServerTest' contains 5 records which should not change, table 2 'Region' has 40+ records.
using an append quary all records are combined into table 3 'Junction1'
my problem...
the Region table will change over time and new records will be added.
how do I append the new records only to the junction1 table?
this is my append quary;
INSERT INTO Junction1 ( RegionID, TestID, TestNumber, TestDescription )
SELECT Region.RegionID, ServerTest.TestID, ServerTest.TestNumber, ServerTest.TestDescription
FROM Region, ServerTest;
thanks
Murlen
using an append quary all records are combined into table 3 'Junction1'
my problem...
the Region table will change over time and new records will be added.
how do I append the new records only to the junction1 table?
this is my append quary;
INSERT INTO Junction1 ( RegionID, TestID, TestNumber, TestDescription )
SELECT Region.RegionID, ServerTest.TestID, ServerTest.TestNumber, ServerTest.TestDescription
FROM Region, ServerTest;
thanks
Murlen