我有以下表格:
create table x (a int primary);
create table y (b int primary);
create table z (c int, d int, e int);
我(后来故意)将复合外键添加到z:
alter table z add constraint c foreign key (c) references x(a)
alter table z add constraint d foreign key (d) references y(b)
是否可以在单个sql指令中将此复合外键添加到现有表中?