功能依赖查询

时间:2014-05-15 13:07:38

标签: database functional-dependencies

假设我有一个名为PAPER = {ID, Title, Description, No.Students, Quarter}的关系。

如果我说ID -> Title{Title, Quarter} -> No.Students。是否有一条公理允许我说{ID, Quarter} -> No.Students

因为如果id确定了标题,我是否可以在第二个函数依赖项中用id替换title?

1 个答案:

答案 0 :(得分:1)

源自阿姆斯特朗公理的附加规则之一是伪传递性规则。它说明了

If A->B and BC->D then AC->D.

代替您的条款。 。

If ID->Title and {Title, Quarter}->No.Students, then {ID, Quarter}->No.Students