次の関係を満たすテーブルがあります。
R(A, B, C, D, E, F, G, H, I, J, K, L, M, N)
{A, B, C} is the primary key.
{D, E} forms a candidate key.
The following functional dependencies exist among the attributes of the relation:
{A, B} -> {H,I}
{D} -> {F,G}
{J} -> {K,L}
{E} -> {M,N}
これを第2正規形に分解する必要があるので、{AB->HI}, {D->FG}, {E->MN}
独立したテーブルに分けます。しかし、どう{J->KL}
ですか?これをどのように正規化する必要がありますか?