Question: Knowing about normalization, what superior way could you use to organize the data? Create two tables: Reservations ( ReservationID , ClassID, ClassInstructors, CustomerID ) ;

Knowing about normalization, what superior way could you use to organize the data?
Create two tables: Reservations (ReservationID, ClassID, ClassInstructors, CustomerID); ClassPrice (ClassID, ClassPrice, OtherFees)
Create three tables: Reservations (ReservationID, ClassID, ClassInstructors, CustomerID); ClassPrice (ClassID, ClassPrice); ClassOtherFees (ClassID, OtherFees)
Add a new field to the table: Reservations (ReservationID, ClassID, ClassInstructors, PriceID, ClassPrice, OtherFees, CustomerID)
The data is organized in the best possible way.

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!