Insert Data Into Temp Table with Query

后端 未结 8 1962
春和景丽
春和景丽 2020-12-12 12:43

I have an existing query that outputs current data, and I would like to insert it into a Temp table, but am having some issues doing so. Would anybody have some insight on h

8条回答
  •  情歌与酒
    2020-12-12 13:12

    SELECT * INTO #TempTable 
    FROM SampleTable
    WHERE...
    
    SELECT * FROM #TempTable
    DROP TABLE #TempTable
    

提交回复
热议问题