Changes between Version 19 and Version 20 of Normalization


Ignore:
Timestamp:
07/15/26 06:10:10 (11 days ago)
Author:
235018
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Normalization

    v19 v20  
    330330
    331331
    332 
    333 
    334 
    335 
    336 
    337 
    338 
    339 
     332== Third Normal Form (3NF)
     333
     334A 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
     340A transitive dependency occurs when:
     341
     342{{{#!c++
     343Primary Key → Non-key Attribute A
     344Non-key Attribute A → Non-key Attribute B
     345}}}
     346
     347
     348
     349
     350
     351
     352