Help with tables pls..

  • Thread starter Thread starter Guest
  • Start date Start date
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
 
Back
Top