我在销售表上设置了这个简单的约束 CONSTRAINT sales_stamping_id_key UNIQUE(company_id,stamping_id,invoice_number,billed) 而且我似乎无法找到一种方法来将此约束更改为可延迟而不删除约束。有没有办法做到这一点?
答案 0 :(得分:5)
您可以像这样更改唯一约束:
alter table foo add constraint bar_idx unique using index bar_idx deferrable;
http://www.postgresql.org/docs/current/static/sql-altertable.html