Normalization is a technique for designing relational database tables to minimize duplication of data and ensure data integrity. It involves organizing data into tables and establishing relationships between tables based on their attributes. There are several normal forms like 1NF, 2NF and 3NF that provide rules for table design to reduce anomalies and inconsistencies. Functional dependencies define relationships between attributes in a table, and normalization aims to remove non-key attributes that are functionally dependent on other attributes.
Related topics: