Describe the process of normalization in databases.
Use the supplied parameter records to represent the normalized form of the data. Explain the progression through the normal forms, the anomalies normalization prevents, and the trade-offs involved.
deployment_id, parameter_name, and parameter_value.deployment_id, then parameter_name, with NULL values last.| Column | Type | Description |
|---|---|---|
| parameter_idPK | INT | Unique identifier for the parameter record |
| deployment_id | INT | Identifier of the deployment |
| parameter_name | VARCHAR(100) | Name of one deployment parameter |
| parameter_value | VARCHAR(255) | Atomic value assigned to the parameter |