Postgrel 如何建立分割槽表並插入資料

2021-09-26 09:19:07 字數 753 閱讀 5655

首先檢視postgresql 的版本號

select version();

由於我的終端經常超時,鏈結完成後設定一下超時時間

set statement_timeout to 30000000;

建立主表

create table public.webworkordertest

(daytime timestamp without time zone,

cgi text

)partition by range (daytime);

建立分割槽表繼承主表

create table webworkordertest_20190822 partition of webworkordertest

for values from ('2019-08-22') to ('2019-08-23');

正常插入資料

插入非正常資料

Oracle 建立分割槽表

建立表空間 create tablespace mytablespace 1 datafile c oracle product 10.1.0 oradata mydata mytablespace1.dbf size 100m extent management local uniform siz...

hive 建立分割槽表

必須在表定義時建立partition a 單分割槽建表語句 create table day table id int,content string partitioned by dt string 單分割槽表,按天分割槽,在表結構中存在id,content,dt三列。以dt為資料夾區分 b 雙分割...

Oracle 建立分割槽表

建立表空間 create tablespace mytablespace 1 datafile c oracle product 10.1.0 oradata mydata mytablespace1.dbf size 100m extent management local uniform siz...