1. 程式人生 > >解決postgres不能無效化外鍵的問題

解決postgres不能無效化外鍵的問題

column tab str 公司 方式 ref table ons key

如題,公司內部系統用的DB從oracle切換到了postgres,

enable/disable fk的寫法不能用了。。。

網上搜了一下,ms只能用先刪除外鍵,然後重新創建的方式,memo一下。

alter table xxxxx drop constraint xxxx_fk;

alter table xxxxx add constraint xxxx_fk foreign key (column1) references yyyyyy (column1);

解決postgres不能無效化外鍵的問題