I want to copy/apend last two weeks table data into another existing table

  • Hi,

    I want to copy/append last two weeks data into another existing table with exactly same schema.

    I cant to select * into becuase it just replaces all data and i think we need a new table for it because i can not use select * into for an existing table plus i want to keep my data in both tables i dont want a replace.

    Can anyone please help, sorry for asking a vague question.

    Thank you

  • INSERT INTO existingtable

    SELECT * FROM OtherTable

    WHERE OtherTable.Datefield = some condition

    Should do the job.

    In Access query design, look for an append query. that will do the job for you.

Viewing 2 posts - 1 through 1 (of 1 total)

You must be logged in to reply to this topic. Login to reply