Hello all.
Im looking for a sql code or macro to copy the data from one query into another table.
The source data for the crosstab query(DATA_Crosstab) will change daily and i would like to keep a record within access in the ByArea table.
The below code copies over fine but asks to delete the table first. I would like to keep all the previous data and just add the record below.
Many Thanks in advanced, im very new to access
Im looking for a sql code or macro to copy the data from one query into another table.
The source data for the crosstab query(DATA_Crosstab) will change daily and i would like to keep a record within access in the ByArea table.
The below code copies over fine but asks to delete the table first. I would like to keep all the previous data and just add the record below.
Code:
select * into ByArea
from DATA_Crosstab
Many Thanks in advanced, im very new to access