Append Query

J

Jean

Hi, I am new to Access, I have Access 2000.

I need to create a query, hopefully append, to add only "new" records to my
existing table and not just append "all".

I want Access to find "new" records and then just append the "new" records.
Is it possible?
 
A

a a r o n . k e m p f

it's called a WHERE CLAUSE

Insert MyEmployees
Select * from EMployees
Where DateEntered > Now()-3

-Aaron
 
Top