Answers for "sql query select from temp table"

SQL
1

select into temp table

SELECT * 
INTO #temp
FROM (
    SELECT col1, col2
    FROM table1
) AS x
Posted by: Guest on August-04-2020
0

select into temp table

SELECT t.col1, t.col2...
INTO #temp
FROM table1 AS t
Posted by: Guest on October-26-2020

Code answers related to "sql query select from temp table"

Code answers related to "SQL"

Browse Popular Code Answers by Language