Functional dependency and normalization

后端 未结 6 731
清歌不尽
清歌不尽 2021-01-31 10:44

I am trying to find a great resource to study for functional dependency and normalization.

Anyone have any idea where should I look to? I am having difficulty different

6条回答
  •  慢半拍i
    慢半拍i (楼主)
    2021-01-31 11:21

    What is Functional Dependency?

    Functional Dependencies are fundamental to the process of Normalization Functional Dependency describes the relationship between attributes(columns) in a table. In other words, a dependency FD: X → Y means that the values of Y are determined by the values of X. Two tuples sharing the same values of X will necessarily have the same values of Y.

    What is Database Normalization?

    Database Normalization is a step wise formal process that allows us to decompose Database Tables in such a way that both Data Redundancy and Update Anomalies(see above for more info on update anomalies) are minimized.

    Courtesy

提交回复
热议问题