Functional dependency and normalization

后端 未结 6 715
清歌不尽
清歌不尽 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条回答
  •  野趣味
    野趣味 (楼主)
    2021-01-31 11:34

    Functional Dependency

    Functional dependency can be defined as relationship that exits between attributes in relation. Functional dependencies are used to create relation in Boyce Codd Normal Form abbreviated as BCNF. If C and D are the attributes of relation R and attribute C functionally determines attributes D then the functional dependency between both attribute can be expressed as C->D.

    Example : Below the person schema

    person(national_id, name, address);

    Here national_id functionally determines the person_name. So functional dependency is national_id -> name;

    Functional dependency is important in relational database design for the purpose of eliminating redundancy.

提交回复
热议问题