-- CREATE TEMP TABLE
Create Table #MyTempTable (
EmployeeID int
);
-- DROP TEMP TABLE
IF OBJECT_ID('tempdb..#MyTempTable') IS NOT NULL DROP TABLE #MyTempTable
declare @table table (id int)
create table #table (id int)
create table ##table (id int)
select * into #table from xyz
declare table sql server