Understanding 3NF: plain English please
问题 I am working through an example problem in which we are trying to identify which of the following relations is in Third Normal Form (3NF). Here are the relations we are given: R1(ABCD) ACD -> B AC -> D D -> C AC -> B R2(ABCD) AB -> C ABD -> C ABC -> D AC -> D R3(ABCD) C -> B A -> B CD -> A BCD -> A R4(ABCD) C -> B B -> A AC -> D AC -> B I know the answer is R1 is in 3NF, but I'm having a hard time understanding the steps to go about determining what violates 3NF. Can