After having created a temporary table and declaring the data types like so;

CREATE TABLE #TempTable(
ID int,
Date datetime,
Name char(20))

How do I then insert the relevant data which is already held on a physical table within the database?

14 Answers
14

Leave a Reply

Your email address will not be published. Required fields are marked *