MS Access database (2010) how to create temporary table/procedure/view from Query Designer

前端 未结 5 1076
暗喜
暗喜 2021-01-18 15:20

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

5条回答
  •  执念已碎
    2021-01-18 15:36

    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;
    

提交回复
热议问题