Seriously.
I'm looking at the data extraction routine (from Access). It appears to be "run query 1" then "run query2" then "run query 3" then "run query 4".
How do I link them together?
For example 1+2, which simplistically deletes all data from 2013 in one table and then adds in the data from 2013 from another table.
How do I combine (or where can I find some info about how to do it pls):
Delete [table1].[Field1]
From [table1]
WHERE ((([table1].[Field1])>#date#));
with
INSERT INTO [field1], then lots more [fields]
FROM [table2]
Hi!!!!!!!
Me again!!!
lolz
Seriously.
I'm looking at the data extraction routine (from Access). It appears to be "run query 1" then "run query2" then "run query 3" then "run query 4".
How do I link them together?
For example 1+2, which simplistically deletes all data from 2013 in one table and then adds in the data from 2013 from another table.
How do I combine (or where can I find some info about how to do it pls):
Delete [table1].[Field1]
From [table1]
WHERE ((([table1].[Field1])>#date#));
with
INSERT INTO [field1], then lots more [fields]
FROM [table2]