The original single orders table had redundant data, non-atomic values, and failed to meet the database properties of atomicity, reliability, consistency, non-redundancy, and completeness. To improve the design, normalization was applied up to 3NF, resulting in three tables: Order, Customer, and Items. Each record is uniquely stored using primary keys, reducing redundancy and errors. The normalized structure ensures reliable and consistent data management.