rafik

  • Thread starter Thread starter Append table
  • Start date Start date
A

Append table

hi,
i created a table for temp entries, befor closing the temp
table i like to give the user the option to append an
existing table with the new tata from the temp table.
what is the command to do that
thank you.
 
append an
existing table with the new tata from the temp table.
what is the command to do that

INSERT INTO ExistingTable
(FieldOne, FieldTwo, FieldThree)
SELECT FieldA, FieldB, FieldC
FROM TempTable

HTH


Tim F
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top