Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

-

R(a, b, c, d)

Functional dependencies: None

I think it is 0NF, because there are no functional dependencies.

R(a, b, c, d)

Functional dependencies: b->d AND a,b->c

This should be 3NF, i think.

I am stuck at this one

R(a, b, c, d, e)

Functional dependencies: a->d,e AND a,d->b,c,e

share|improve this question

1 Answer

There is always the trivial dependency,

a,b,c,d -> a,b,c,d

The key is the entire relation. Not often useful, but not 0NF.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.