我想从复合主键中删除一列(不要从表中删除)。如果我的桌子是这样的。
create table "scott"."xyz"(
"column1" not null,
"column2" not null,
"column3" not null,
"column4" not null,
"column5" not null,
"column6",
CONSTRAINT PRIMARY KEY ("column1","column2","column3","column4")
);
我想将此主键更改为前三列而不删除它。因为我不知道约束名称。