码迷,mamicode.com
首页 > 数据库 > 详细

postgreSQL的主外键

时间:2017-12-07 00:11:01      阅读:232      评论:0      收藏:0      [点我收藏+]

标签:ssid   res   主键   date   更新   foreign   alt   table   uniq   

--添加主键
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的主外键

标签:ssid   res   主键   date   更新   foreign   alt   table   uniq   

原文地址:http://www.cnblogs.com/baisha/p/7995082.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!