标签: postgresql ddl
如果约束已经存在,我不想更改约束表。只是忽略它
alter table test.student add constraint student_name_key unique (student_name);
在我的情况下,约束名称如下所示,不确定哪个是哪个。
注意:我使用的是以下一项,仍然无法使用
ALTERTABLETABLE test.student添加CONSTRAINT如果不存在,则为student_name_key;