G
giannis
I need an append query that imports all the
no duplicate records in a table from another one.
Suppose that Table1 is the target table with
the fields field1 and field2 and suppose that
Table2 is the sourse table with fields F1 and F2,
the query for all the records is :
INSERT INTO Table1 ( field1, field2 )
SELECT [Table2].[F1], [Table2].[F2]
FROM Table2
What is the query for all - no duplicate- records ?
(what must write in the WHERE ?)
no duplicate records in a table from another one.
Suppose that Table1 is the target table with
the fields field1 and field2 and suppose that
Table2 is the sourse table with fields F1 and F2,
the query for all the records is :
INSERT INTO Table1 ( field1, field2 )
SELECT [Table2].[F1], [Table2].[F2]
FROM Table2
What is the query for all - no duplicate- records ?
(what must write in the WHERE ?)