| ID Pedido | Fecha Pedido | ID Cliente | Nombre Cliente | Dirección Cliente | | --- | --- | --- | --- | --- | | 1 | 2022-01-01 | 1 | Juan Pérez | Calle 123 | | 2 | 2022-01-15 | 2 | María Gómez | Calle 456 |
For instance, if a customer’s address is stored in five different places within a database, updating it becomes a nightmare; if one instance is missed, the data becomes inconsistent. Normalization solves this by ensuring that data is stored logically and in one place. Mastering the three main normal forms (1NF, 2NF, and 3NF) is essential for building scalable, efficient systems.
Debe estar en 1FN y cada atributo no clave debe depender de la clave primaria completa.
Analysis: We need to identify the Primary Key. Let's assume the Primary Key is composite: (ID_Loan, Book_ID) (since one loan can involve multiple books, though our dependency suggests a specific structure. Let's assume for this example the key is simply ID_Loan ).