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

There are two functional dependencies in the SQL databases.

a) Partial functional dependency: A non-key column is dependent on some, but not all of the columns in a composite primary key.

b) Transitive functional dependencies: Any non-key column depends on other non-key columns.

For a good SQL database.

Rule 1: Columns contain only atomic values

Rule 2: No repeating groups of data

Rule 3: Have no partial dependencies

Rule 4: having no transitive dependencies

I've understood the requirements of the 1 and 2nd rules, why do we need the 3rd and 4th rules, instead of saying the no column shouldn't depend on other columns. Why is there two separate rules (3 and 4)?

Source: Head First SQL

Thanks in advance!

share|improve this question
"no column shouldn't depend on other columns"–do you mean something like "non-key columns should depend only on the whole of keys"? Double negatives in English are tricky. – outis Dec 10 '10 at 12:50
@outis : Thanks for clarifying the question, I mean, instead of having separate rules, can't we say as "The columns of a database shouldn't depend on any other columns other than primary key column. And if the primary key is a composite column, then, I mean, it will be considered as a single column for this dependency problem" – Kugathasan Abimaran Dec 10 '10 at 13:40
Yes of course there are different ways of explaining the same thing. Your definition is not perfect however. Dependence on ONE key ("primary key") is not sufficient. Every attribute should depend on ALL the keys of the table. – sqlvogel Dec 10 '10 at 21:12
@dportas : I don't get you. >"Dependence on ONE key ("primary key") is not sufficient. Every attribute should depend on ALL the keys of the table." Please elaborate a bit. – Kugathasan Abimaran Dec 12 '10 at 4:19
for example given the following set of FDs: AB->C, C->D, C->AB you would require two keys: AB and C. – sqlvogel Dec 13 '10 at 10:03

1 Answer

up vote 7 down vote accepted

Good question. It is purely for historical and pedagogical reasons that these two are often separated.

Second Normal Form (2NF) is concerned with eliminating only partial key dependencies. 2NF alone normally isn't especially important because the Third Normal Form, Boyce Codd Normal Form and higher normal forms also eliminate those same partial key dependencies and those NFs (> 2NF) are usually the desired goal in database design. However, it is common practice to teach normalization using a process of decomposition. By the decomposition method, partial key dependencies are usually considered first. In reality this is rarely done by most practioners who will often consider all dependencies at once.

Definitions of Normal Forms higher than 2NF don't necessarily mention partial key dependencies as a special case at all. Boyce Codd Normal Form can be briefly summarised as meaning that every non-trivial functional determinant is a superkey - in other words, no non-trivial FDs (of any kind) on anything other than keys.

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.