Answer:In this scenario, an example of a table that is in first normal form but not in second normal form is the TRIPGUIDES table, which contains the columns TRIP_ID, GUIDE_NUM, and TRIP_NAME. This table is in first normal form because the domain of each attribute contains only atomic or unique values, and each attribute contains only a single value from the respective domain. However, the table is not in second normal form because the non-key column TRIP_NAME is dependent on only a portion of the primary key (TRIP_ID).
To convert the TRIPGUIDES table to second normal form, the table can be split into two tables: TRIP and TRIPGUIDES. The TRIP table would contain the columns TRIP_ID and TRIP_NAME, and the TRIPGUIDES table would contain the columns TRIP_ID and GUIDE_NUM. This way, the data in the TRIPGUIDES table would only be dependent on the primary key (TRIP_ID) and not on any non-key columns.
An example of a table that is in second normal form but not in third normal form is the RESERVATION table, which contains the columns RESERVATION_ID, TRIP_ID, OWNER_NUM, LAST_NAME, and FIRST_NAME. This table is in second normal form because it is in first normal form and no non-key columns are dependent on only a portion of the primary key (RESERVATION_ID). However, the table is not in third normal form because the non-key columns LAST_NAME and FIRST_NAME are dependent on the non-primary key column OWNER_NUM, which is not a candidate key.
To convert the RESERVATION table to third normal form, the table can be split into two tables: OWNER and RESERVATION. The OWNER table would contain the columns OWNER_NUM, LAST_NAME, and FIRST_NAME, and the RESERVATION table would contain the columns RESERVATION_ID, TRIP_ID, and OWNER_NUM. This way, the data in the RESERVATION table would only be dependent on the candidate keys (RESERVATION_ID and OWNER_NUM) and not on any non-key columns.
Step-by-step explanation: