Changes between Version 42 and Version 43 of Normalization


Ignore:
Timestamp:
05/05/26 10:41:05 (3 weeks ago)
Author:
221296
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Normalization

    v42 v43  
    246246
    247247== Decomposition to 2NF
    248 
     248{{{
    249249=== We eliminate partial dependencies by decomposing R into smaller relations such that each determinant becomes a primary key in its own relation.
    250250
     
    252252
    253253- !UserEntity(user_id, first_name, last_name, email, password, role)
    254  
    255254  PK: user_id
    256 
    257255- Derived from:
    258256
     
    567565Therefore, the decomposition satisfies Second Normal Form (2NF).
    568566
     567}}}
    569568== Check for 3NF (and decomposition)
    570569Now we look for transitive dependencies inside the relations obtained after the 2NF decomposition.