Is there any way how to create temporary table/view/stored procedure in MS Access database (2010) using Query Designer?
Whenever i try to execute something like thi
Try this
SELECT* INTO Temp1 FROM TableName;
Note: you should have an existing table from which you want to create your temporary table.
Use a SELECT statement to check your results:
SELECT* FROM Temp1;