SELECT * INTO #temp FROM ( SELECT col1, col2 FROM table1 ) AS x
SELECT t.col1, t.col2... INTO #temp FROM table1 AS t