CREATE TABLE #haro_products (
product_name VARCHAR(MAX),
list_price DEC(10,2)
);
-- create Local temporary table i.e single hash(#)
CREATE TABLE #TempTable
( Column1 datatype, column2 datatype……)
INSERT INTO #TempTable
(Column1, column2……)
VALUES ('value 1', 'value 2')
-- 2nd method (Select Into)
SELECT * INTO #TempTable
FROM SampleTable
WHERE...
-- create Global temporary table i.e double hash(##)
CREATE TABLE ##tablename
( Column1 datatype, column2 datatype……)
-- CREATE TEMP TABLE
Create Table #MyTempTable (
EmployeeID int
);
DECLARE @TempTable AS TABLE(//Mention your columns in here.//)
After that you can insert into this table later.
DECLARE @TempTable AS TABLE (Id INT); -- add column that you need with datatype.
IF Object_ID('tempdb..#Tablename') IS NOT NULL DROP TABLE #Tablename
Select
*
into
#Tablename
FROM
SampleTable
If(OBJECT_ID('tempdb..#temp') Is Not Null)
Begin
Drop Table #Temp
End