the act of adjusting (deforming or transforming) data according to a certain rule
Primary normalization:eliminating repetitions
Second Normalization: Image of table separation of composite primary keys with single primary keys
Third normalization: eliminate transition dependencies
[Purpose of Normalization]
- facilitate comparison and analysis of
- Reduce data inconsistencies and updates
- eliminate duplication of
- maintain data integrity
[Examples of normalization]
- Database Normalization Divide data accurately and place each item in the right place
『正規化』の概要
一定のルールに基づいてデータを整える(変形・変換する)こと
第一正規化:繰り返しの排除
第二正規化:複合主キーを単一主キーのテーブル分離するイメージ
第三正規化:推移従属を排除する
【正規化の目的】
- 比較や分析を容易にする
- データの不整合や更新の手間を減らす
- 重複を排除する
- データの整合性を保つ
【正規化の具体例】
- データベースの正規化:データを正確に分割し、各項目を適切な場所に配置する
〇参考資料

分かりやすく正規化について理解しよう (データベース) - Qiita
データベースの正規化についてわかりやすく理解しようデータベースの正規化とは??データベースの正規化とは、データの整合性を確保するために必要な手法です。データの重複を削除し、更新や削除に起因する問…