sql Temporary Tables
CREATE TABLE #MyTempTable ( TempID int, Name varchar(50) ) INSERT INTO #MyTempTable (TempID,Name) VALUES (1,'Testing') SELECT * FROM #MyTempTable DROP TABLE #MyTempTable
Syntax for creating a temporary table on the fly.
Updated: Saturday 9th October 2010, 11:41pm
There are 0 comments
Comments are currently closed.