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

前端 未结 5 1071
暗喜
暗喜 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:50

    This will work if you add:

    SET NOCOUNT ON
    SELECT * INTO #temp_table
    FROM (SELECT column_1, column_2 FROM table)
    

提交回复
热议问题