Copying from one table to another

C

castor

Hi,

I have two tables in my Access db with the exact same
structure. I just want to copy all the records from one of
them to another. In other words consolidate the records
into ine database. Is there a way to do this faster than
just simple copying all the records and pasting in the
other. The numbe rof records is huge so that will take for
ever.

Please let me know.

Thanks - Castor
 
L

Lynn Trapp

Create the following Query

INSERT INTO YourFirstTable
SELECT * FROM YourSecondTable;
 
C

Castor

Sorry, but I am new to Access. Can you please explain in a
little more detail how would I do this i.e. Insert and
select *?
 

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

Top