Tagged Questions
The third-normal-form tag has no wiki summary.
8
votes
5answers
484 views
Are zip code and postal code violation of 3rd normal form?
Given that state information is implicit in the zip code aren't storing both of them some violaiton of third normal form? Can or should you simply combine them into one field?
5
votes
3answers
264 views
How do you normalize one-to-one-or-the-other relationships?
I'm storing data on baseball statistics and would like to do so with three tables: players, battingStats, and pitchingStats. For the purpose of the question, each player will have batting stats or ...
3
votes
2answers
267 views
Difference between 3NF and BCNF in simple terms (must be able to explain to an 8-year old)
I have read the quote :
data depends on the key [1NF], the whole key [2NF] and nothing but the key [3NF].
However, I am having trouble understanding 3.5NF or BCNF as it's called. Here is what I ...
0
votes
2answers
139 views
Determining the functional dependencies of a relationship and their normal forms
I'm studying for a database test, and the study guide there are some (many) exercises of normalization of DB, and functional dependence, but the teacher did not make any similar exercise, so I would ...
0
votes
2answers
81 views
Is the design on 3rd normal form?
I have a table that has an attribute category. E.g a table where I save songs which has an attribute Genre:
Songs(
ID (INT),
Name (STRING),
Genre: (STRING)
)
Is the table in 3rd normal form?
I ...
0
votes
3answers
203 views
Question about 3rd Normal Form
The following table :
EmpId State Zip
1 FL 342008
2 CA 342001
is not in 3rd normal form because
State is dependent on the primary
key(EmpId) transitively.
So, if I break it ...