函数依赖的关闭
如果你有A->B 什么是闭包 (A->B)+ 只是A->B吗?
If you have A->B
What is the closure (A->B)+
Is it just A->B ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如果你有A->B 什么是闭包 (A->B)+ 只是A->B吗?
If you have A->B
What is the closure (A->B)+
Is it just A->B ?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
如果您也在寻找微不足道的函数依赖关系,那么您可以找到诸如 A->A、B->B、AB->A、AB->B、AB->AB 之类的东西,当然还有 A ->B和A->AB。很容易看出,一旦有多个属性,显式写出一组 FD 的闭包就变得很笨拙。
然而,存在多项式时间算法来检查对于任何FD F集合,FD X→Y是否处于F+中。
If you are looking for trivial functional dependencies as well, then you have stuff like A->A, B->B, AB->A, AB->B, AB->AB, and of course A->B and A->AB. It's easy to see that once there are more than a few attributes, explicitly writing out the closure of a set of FDs becomes unwieldy.
However, there is a polynomial-time algorithm for checking whether an FD X->Y is in F+ for any set of FDs F.