2017-08-03 57 views

回答

1

是的,可以。

这会工作:

create table s(id int primary key, n int unique); 
create table t(id int primary key, n int unique references s(n)); 
+0

谢谢宝贵的答案。这对于复合独特约束可能吗? –

相关问题