PostgreSQL中主键操作方法
PostgreSQ主键也可以包含多于一个列,其语法和唯一约束相似,但是主键自带唯一约束,且每个表可以有多个变量声明唯一约束,但却仅能有一个变量声明主键约束,本文介绍PostgreSQL中主键的几个基本操作方法。
1. 添加主键
ALTER TABLE public.tablename -- 添加主键的表名ADD CONSTRAINT tablename_pkey -- 主键的名称
PRIMARY KEY (id -- 主键的列名
);
2、删除主键
alter table dw_stg.stg_ord_fct_quote_items_info_mid drop CONSTRAINTstg_ord_fct_quote_items_info_mid_pkey;
3、更改分布键
alter table dw_stg.stg_ord_fct_quote_items_info_mid set distributed by(quote_item_id,ord_loc);
4、新增主键
alter table dw_stg.stg_ord_fct_quote_items_info_mid add CONSTRAINTstg_ord_fct_quote_items_info_mid_pkey primary key(quote_item_id,ord_loc);
以上就是PostgreSQL中主键的几个基本操作方法,希望能对你有所帮助哟~
以上是 PostgreSQL中主键操作方法 的全部内容, 来源链接: utcz.com/z/543407.html