I have trouble finding the candidate keys of a relation when there aren't any keys with only 1 attribute, so I have to find composite candidate keys.
I have the relation R(A, B, C, D, E, F, G, H, I, J, K) and the FDs:
A, B → D
A → C, E
B→ G
G → H, I
C → J, K
and I have to find the key of R, but there aren't any keys with 1 attribute. In order to find all the candidate keys of R I calculate every combination of 2 fields or I just check if the combination {A, B} is a candidate key, because there is a FD with that combination?
Thanks in advance