Tag: 独有密钥

Oracle独特的约束和独特的索引问题

有人可以澄清没有唯一约束(甲骨文)具有唯一索引的目的是什么? 例如, create table test22(id int , id1 int, tmp varchar(20)); create unique index idx_test22 on test22(id); insert into test22(id, id1,tmp) values (1,2,'aaa'); // ok insert into test22(id, id1,tmp) values (1,2,'aaa'); // fails, ORA-00001: unique // constraint (TEST.IDX_TEST22) violated 到目前为止,看起来有一个约束。 但 create table test33(id int not null primary key, test22_id int not null, foreign key(test22_id) […]