Changes between Version 19 and Version 20 of Normalization
- Timestamp:
- 07/15/26 06:10:10 (11 days ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Normalization
v19 v20 330 330 331 331 332 333 334 335 336 337 338 339 332 == Third Normal Form (3NF) 333 334 A relation is in Third Normal Form (3NF) if: 335 336 **1.** It is already in Second Normal Form (2NF). 337 **2.** There are no transitive dependencies. 338 **3.** Every non-key attribute depends only on the primary key, and not on another non-key attribute. 339 340 A transitive dependency occurs when: 341 342 {{{#!c++ 343 Primary Key → Non-key Attribute A 344 Non-key Attribute A → Non-key Attribute B 345 }}} 346 347 348 349 350 351 352
