Can you help me to normalize a table. The exercise say: "Find the functional dependencies (FD) and normalize the table" (i guess this means to put it in 3NF):
A |B |C |D
------------
a1|b1|c1|d1
a2|b1|c1|d1
a1|b1|c2|d1
a5|b2|c5|d1
a6|b1|c7|d2
a3|b1|c1|d4
a1|b5|c4|d3
I didn't find any FD. The simple types of FD are:
{A} -> {B}
{A} -> {C}
...
{B} -> {A}
...
{D} -> {A}
{D} -> {B}
{D} -> {C}
Altogether 12. I refer from http://en.wikipedia.org/wiki/Database_normalization and looked at this kb article from MSDN: http://support.microsoft.com/kb/283878