Consider R: A B C D E F G H I J and given next dependecies:
CE -> J
J -> E
CJ -> J
CJ -> E
C -> D
D -> J
I'm trying to figure out a dependencies tree. I suppose that CE -> J -> E is a redundant dependency so I can just delete that dependency. But can someone explain to me why? I'm not getting the ponit of not considering CE -> J -> E if J still needs CE to exist.
This is not a homework. Im just trying to get into db normalization.