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
SELECT * INTO #TempTable FROM SampleTable WHERE... SELECT * FROM #TempTable DROP TABLE #TempTable