I have Access linked to a read only database. To create some queries I had to create my own tables via "make table queries". To ensure that my queries are up to date when I run them, I need to run the "make table queries" or some sort of update query BEFORE I run my desired query.
For example: I want to run query A, but I need to run query B to update the information in the tables that A uses. Is there a way to call query B before query A?
Here is my current SQL for the make table query I have.
Thanks in advance.
SELECT allmid_cpu.vendor, allmid_cpu.model INTO models
FROM allmid_cpu
GROUP BY allmid_cpu.vendor, allmid_cpu.model
HAVING (((allmid_cpu.model)<>"Unknown"
)
ORDER BY allmid_cpu.vendor, allmid_cpu.model;
For example: I want to run query A, but I need to run query B to update the information in the tables that A uses. Is there a way to call query B before query A?
Here is my current SQL for the make table query I have.
Thanks in advance.
SELECT allmid_cpu.vendor, allmid_cpu.model INTO models
FROM allmid_cpu
GROUP BY allmid_cpu.vendor, allmid_cpu.model
HAVING (((allmid_cpu.model)<>"Unknown"

ORDER BY allmid_cpu.vendor, allmid_cpu.model;