gpt4 book ai didi

sql - "table that is a parent of a referential integrity constraint"对于 oracle SQL 有什么作用?

转载 作者:行者123 更新时间:2023-12-01 12:33:00 24 4
gpt4 key购买 nike

我正在准备 Oracle 1Z0-051 考试,我在 a question about DELETE/TRUNCATE 中阅读了这篇文章:

... table that is a parent of a referential integrity constraint ...

如果一个表是另一个具有参照完整性约束的表的“父表”,这意味着什么?

或者这可能是答案选择中的误报?

最佳答案

“父”和“子”通常用于描述一对多关系(任何类型,而不仅仅是数据库相关)中的两个表。一个“ parent ”有许多“ child ”(行)。

“父”是在外键约束中引用的表。
“子”是在外键约束中引用父项的表。

例如

create table customer ( -- the "parent"
id int,
...
primary key (id)
)

create table cart ( -- the "child"
id int,
customer_id int, -- the foreign key column
...
constraint foreign key (customer_id) references customer(id)
)

关于sql - "table that is a parent of a referential integrity constraint"对于 oracle SQL 有什么作用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31866498/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com