开发者

3NF in Relational Database Design

开发者 https://www.devze.com 2023-01-24 02:53 出处:网络
Given a schema R (A,B,C,D) with functional dependencies F = {A->B, A->C} I need to determine if R is in 3NF, but first I need to determine what the candidate keys are so I can determine if B and

Given a schema R (A,B,C,D) with functional dependencies F = {A->B, A->C} I need to determine if R is in 3NF, but first I need to determine what the candidate keys are so I can determine if B and C are contained in some candidate key. How would I go about determining the开发者_高级运维 candidate keys?


"How would I go about determining the candidate keys?"

Using normalization theory to determine keys amounts to considering the trivial dependencies that any relation always satisfies. A->A and D->D in your case. Use Armstrong's axiom of augmentation, or Darwen's "unification theorem", to determine the FD that has all attributes on the RHS, and a minimal set of attributes on the LHS.

You will then observe that there are certain attributes that depend on a proper subset of the key.

And perhaps label the question as "homework".

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号