Q2. The following unnormalized table named Employee. Transform it to third normal form (3NF). You don’t need to provide the process of normalizing the data, just include the final tables. Table.

Answer)
Employee (empl_id, first_name, last_name, job_title, email,
user_role)
FDs:
empl_id -> first_name, last_name, email
job_title -> user_role
Normalization to 3NF:
R1(empl_id email last_name first_name)
FD: empl_id -> first_name, last_name, email
R2(job_title user_role)
FD: job_title -> user_role
R3(empl_id job_title)
Q2. The following unnormalized table named Employee. Transform it to third normal form (3NF). You don’t...