postgreSQL的主外键

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了postgreSQL的主外键相关的知识,希望对你有一定的参考价值。

--添加主键
alter table cities add PRIMARY KEY(name);
--添加外键
alter table weather add FOREIGN key(city) REFERENCES cities(name) on update CASCADE on DELETE CASCADE;
on update cascade: 被引用行更新时,引用行自动更新;
on update restrict: 被引用的行禁止更新;
on delete cascade: 被引用行删除时,引用行也一起删除;
on dellete restrict: 被引用的行禁止删除;

--删除外键
alter table orders drop constraint orders_goods_id_fkey;
--添加唯一约束
alter table goods add constraint unique_goods_sid unique(sid);
--删除默认值
alter table goods  alter column sid drop default;
--修改字段的数据类型
alter table goods alter column sid type character varying;
--重命名字段
alter table goods rename column sid to ssid;

































以上是关于postgreSQL的主外键的主要内容,如果未能解决你的问题,请参考以下文章

如何在继承类postgresql上实现外键

批量删除MSSQL 中主外键约束

SQL中有主外键的两表到底那这是主表

在PowerDesigner里面怎么创建主外键关系,要详细。谢谢!

powerdesigner如何设置主外键关系?

主外键 子查询