Write SQL Query for the following questions:
a. Create a table called emp_review with the following fields, similar to the Employees table. (Do not copy any rows from the employees table, only copy the listed fields below)
i. Employee_ID
ii. First_Name
iii. Last_Name
iv. Email
v. Salary
b. Insert the corresponding employee information from the employees table for employees who work under a manager with the first name Neena into the emp_review table.
c. Insert a new row of your choice into the emp_review table.
d. Merge the employees and emp_review tables into the emp_review table based on the Employee_ID. Rows from the employees table should be superseded by rows from the emp_review table.