PGSQL 建立臨時表

2022-10-11 14:57:08 字數 514 閱讀 4015

create temporty table tmp_testabc (id int4,name text)

生成臨時表(會話結束後會自動刪除)

建立臨時表 select

*into

temp

table tmp0 from ***

一、根據原表建立臨時表

create

temp

table tmp_test as (select

*from test limit 0);

二、本次使用完臨時表後自動刪除

create

temp

table temp_ads on

commit

drop

as (select

*from testbulkcopy limit 0

);on

commit

drop

本次事務提交後自動刪掉

Oracle 建立臨時表

oracle 儲存過程中不像sqlserver 中 在儲存過程中用 就可以建立臨時表,用來快取需要處理的資料。oracle主要需要物理建立臨時表結構,用到global temporary table 關鍵字。語法如下 create table create global temporary tabl...

sqlserver建立臨時表

建立臨時表 方法一 create table 臨時表名 欄位1 約束條件,欄位2 約束條件,create table 臨時表名 欄位1 約束條件,欄位2 約束條件,方法二 select into 臨時表名 from 你的表 select into 臨時表名 from 你的表 注 以上的 代表區域性臨...

建立臨時表空間

語法 create table albums artist char 30 album name char 50 media type int go該錶也可以使用下邊的命令來手動刪除 drop table albums go當使用者退出sql server 時該表也可以被自動地刪除如果你是在自態sq...