候选键/归约
我有一个关系
R = (S, T, U, V, W, X, Y, Z),其中 FD 的
TW ->是
台湾-> Z
Y-> X
Y-> S
V-> U
X-> T
我正在尝试找到 R 的候选键,但由于关系
TW -> Y-> X-> T
我不知道它是什么。我知道其中必须有“V”和“W”,但我不知道是否还应该有“X”或“T”。
I have a relation
R = (S, T, U, V, W, X, Y, Z) which has the FD's
TW -> Y
TW -> Z
Y -> X
Y -> S
V -> U
X -> T
I'm trying to find the candidate key for R but because of the relationship
TW -> Y -> X -> T
I can't figure out what it is. I know it has to have 'V' and 'W' in it but I don't know if I should also have 'X' or 'T'.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你说
W
在任何候选键中都是绝对确定的。因此,
变为
那么,您选择哪一个,
X
还是T
?为什么不是
Y
?You say that
W
is dead sure inside any candidate key.Therefore,
becomes
So, which one do you choose,
X
orT
?And why not
Y
?该关系 R 的候选键是 TWV 和 XWV,因为它们不能相互推导。所以这个关系有两个候选键,并且一个关系有可能有两个以上的候选键。
The candidate key of this relation R is TWV and XWV both because they cannot be derived from one another. so this relation has two candidate keys and it is possible for aa relation to have more than two candidate keys.