数据库派生值是否与外键相同?
基于 connoly 和 begg 书籍,第四版第 352 页的导出值为
An attribute that represents a value that is derivable from the value of a related attribute or set of attributes, not necessarily in the same entity type.
如果我们有 2 个表,例如 CUSTOMER 和 ORDER,
Customer
- Id_Cust
- Name
- Phone
ORDER
- Order_id<
- id_cust
我们可以说“ORDER.id_cust 是从 Customer.id_cust 派生的”吗?
实际上,我对上面的概念感到非常困惑。