Reading Notes for Codefellows!
Database normalization is a process used to organize a database into tables and columns.
(Quoted from Article)
- 1NF - The information is stored in a relational table with each column containing atomic values. There are no repeating groups of columns.
- 2NF - The table is in first normal form and all the columns depend on the table’s primary key.
- 3NF - the table is in second normal form and all of its columns are not transitively dependent on the primary key
(Quoted from Article)