how do i save a query as a table?

D

Dennis

Right Click in the top half of the query design and then select query type.
One of the options is to make table. Select this, give it a table name and
then run the query.
 
J

John Vinson

i made a query and now i just want to make that query a table

You can change it to a MakeTable query but... it is VERY rarely either
necessary or appropriate to do so.

If you have a Query you can...
Create a Form based on the query
Create a Report based on the query
Export the query to Excel, or a text file, or many other formats
Search the qeury
Sort the query
Base another query on the query

You can do all of these things with a Table, too, but storing the data
that already exists in your Query into a table means you're storing
the data redundantly. You now have the same data stored in two
different places, and updating will become a real problem!


John W. Vinson[MVP]
 
L

leo

Thank you

John Vinson said:
You can change it to a MakeTable query but... it is VERY rarely either
necessary or appropriate to do so.

If you have a Query you can...
Create a Form based on the query
Create a Report based on the query
Export the query to Excel, or a text file, or many other formats
Search the qeury
Sort the query
Base another query on the query

You can do all of these things with a Table, too, but storing the data
that already exists in your Query into a table means you're storing
the data redundantly. You now have the same data stored in two
different places, and updating will become a real problem!


John W. Vinson[MVP]
 
L

leo

THANKS

Dennis said:
Right Click in the top half of the query design and then select query type.
One of the options is to make table. Select this, give it a table name and
then run the query.
 
Top