Help with tables pls..

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

i have two tables and i want to add the data of one table at the bottom of
the other.
 
you need an insert into query

e.g.

Insert Into Candidate (First_Name)
Select First_Name from
Other_Candidate_Table
 
hi,
A simple append query will do that. it would select the
data from table 1 and append(add) it to table 2.
all the fields would have to be the same.
 
....or if you want to do this purely for a report / for rather than an export
you can do a Union Query
 

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