I just need to check if I got 'decomposition' to BCNF properly.
I've got
R (A, B, C, D, E, F, G)
FD's:
F -> E,B
F -> A
C -> D
A -> G
I found (F,C) as a KEY And after decomposition I've got the following relations:
R1 (C,D)
R2 (A,G)
R3 (A,B,C,E,F)
Can someone have a look? Much appreciated
Thanks