##temp table in sql server code example
Example 1: tsql create temp table
CREATE TABLE #haro_products (
product_name VARCHAR(MAX),
list_price DEC(10,2)
);
Example 2: create temp table in sql
-- CREATE TEMP TABLE
Create Table #MyTempTable (
EmployeeID int
);