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
This will work if you add:
SET NOCOUNT ON SELECT * INTO #temp_table FROM (SELECT column_1, column_2 FROM table)