After having created a temporary table and declaring the data types like so;
CREATE TABLE #TempTable( ID int, Date datetime, Name char(20))
H
SELECT ID , Date , Name into #temp from [TableName]