Customer Table in First Normal Form (1 NF) Customer Table CustomerIDNameCity 1ACME CorpDenver 2Two TreesOjai 3AcaciaEdinburgh Contact Table CustomerIDContactName 1Maria Donald 2Helen Bale 3Martin Brown 3Karen Dick 3Jack Watkins Following steps are used to make the customer table into first normal form- -Generate a new table customer. -Generate a new table contact because there is more than one contact for a customer. -Make a relationship in between the customer and contact table. Both tables are following the rules of first normal form because there is no repeated group in both tables. Each table has primary key and all other fields are depending upon the primary key only. The CustomerID is the primary key in the Customer table and working as a foreign key in the Contact table. A customer may have more than one contact therefore; the cardinality is 0..1 to 0..* from Customer table to Contact table.
Events table in Second Normal Form (2 NF) Course Table CourseCourseTitle SQL101Intro to SQL DB101Database Design Event Table EventIDCourseIDDateSeatsRoom 1SQL1014/2/10514 2SQL1015/4/10211 3SQL1016/9/1048 4DB1015/4/10611 Following steps are used to make the Events table into second normal form- -Generate a new table Course as same course and titles are being repeated into the Events table. -Generate a new table Event. -Make a relationship in between the Course and Event table. Both tables are following the rules of second normal form as in both tables there is no repeated group. Each table has primary key and all other fields are depending upon the primary key only. The CourseID is the primary key in the Course table and working as a foreign key in the Event table. A course may be involved in more than one event therefore; the cardinality is 0..1 to 0..* from Course table to Event table.
(Peter Brombarg. n.d.) (1keydata.com. 2015) References Peter Brombarg. (n.d.). SQL SERVER Database Normalization Basics for Developers. Retrieved from http://www.nullskull.com/a/1629/sql-server-database-normalization-basics-for- developers.aspx 1keydata.com. (2015). Database Normalization. Retrieved from http://www.1keydata.com/database-normalization/