After having created a temporary table and declaring the data types like so;
CREATE TABLE #TempTable( ID int, Date datetime, Name char(20))
H
After you create the temp table you would just do a normal INSERT INTO () SELECT FROM
INSERT INTO () SELECT FROM
INSERT INTO #TempTable (id, Date, Name) SELECT t.id, t.Date, t.Name FROM yourTable t