After having created a temporary table and declaring the data types like so;
CREATE TABLE #TempTable( ID int, Date datetime, Name char(20))
H
insert #temptable select idfield, datefield, namefield from yourrealtable