How to create temporary SQL table? Just look at below CREATE TABLE statement.

CREATE TABLE #tempTable (
ID int,
Name char(30) )

(more…)