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
);
-- CREATE TEMP TABLE
Create Table #MyTempTable (
EmployeeID int
);
-- DROP TEMP TABLE
IF OBJECT_ID('tempdb..#MyTempTable') IS NOT NULL DROP TABLE #MyTempTable
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
declare @table table (id int)
create table #table (id int)
create table ##table (id int)
select * into #table from xyz
Code Example |
---|
Sql :: oracle duration between timestamps |
Sql :: sql change data type |
Sql :: mysql date format |
Sql :: sql period overlap |
Sql :: update sqlite |
Sql :: mysql ilike |
Sql :: sql select min row |
Sql :: cast datetime to date in sql |
Sql :: all_dependencies |
Sql :: sql not in |
Sql :: nosql vs sql |
Sql :: select random sample sql |
Sql :: charindex |
Sql :: SQL CASE With ELSE in SQL |
Sql :: encrypt and decrypt in sql server |
Sql :: lower case in sql |
Sql :: sql update multiple rows |
Sql :: sqlite show table structure |
Sql :: sql delete duplicate |
Sql :: declare value in sql |
Sql :: union vs intersect sql |
Sql :: postgresql change user role grant |
Sql :: mysql query to find duplicate records |
Sql :: check for directory in bash |
Sql :: pgadmin see indexes |
Sql :: restart mysql |
Sql :: create a PostgreSQL user django on mac |
Sql :: phone number regex sql |
Sql :: oracle pl/sql package |
Sql :: oracle drop default value |