外键是否始终引用另一个表中的唯一键?

时间:2012-01-02 22:41:04

标签: oracle key parent

子表中的外键(单列)是否可能引用具有某些重复值的父键?

3 个答案:

答案 0 :(得分:24)

根据SQL标准,外键必须引用父表的主键或唯一键。如果主键具有多个列,则外键必须具有相同的列数和顺序。因此,外键引用父表中的唯一行;没有重复。


重新评论:

如果T.A是主键,则不会有任何重复项。任何主键必须唯一且非空。因此,如果子表具有引用父主键的外键,则它必须匹配非null的唯一值,因此在父表中只引用一行。在这种情况下,您不能创建引用多个父行的子行。

可以创建一个外键列为NULL的子行,在这种情况下它不引用父表中的行。

答案 1 :(得分:7)

是的,外键可能引用具有重复值的列。

如果主键使用非唯一索引并且在创建主键时未进行验证,则会发生这种情况。 (但我在现实生活中从未见过这样的情况。正如@Bill Karwin指出的那样,这将是非常令人困惑的。所以这可能不是你真正需要担心的情​​况。)

--Create a table with two duplicate rows
create table test1(a number);
insert into test1 values(1);
insert into test1 values(1);
commit;

--Create a non-unique index
create index test1_index on test1(a);

--Use the non-unique index for the primary key, do not validate
alter table test1 add constraint test1_pk primary key (a)
    using index test1_index novalidate;

--Build another table with a foreign key to TABLE1
create table test2(a number,
    constraint test2_fk foreign key (a) references test1(a));

--Inserting a value that refers to the duplicate value still works.
insert into test2 values(1);
commit;

--The foreign key still works:
--ORA-02291: integrity constraint (TEST2_FK) violated - parent key not found
insert into test2 values(2);

--The primary key works as expected, but only for new values:
--ORA-00001: unique constraint (TEST1_PK) violated
insert into test1 values(1);

答案 2 :(得分:6)

不,这是不可能的。

在表上定义外键约束时,表示外表上只有一个对应的键。如果在外表上存在倍数,那意味着什么?

维基百科在Foreign key条目上有这个定义:

  

外键是关系表中与另一个表的候选键匹配的字段

候选键在表格中是唯一的。