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!