3.9 Write an INSERT statement to add Jennier Lawrence's information to the EMP tableColumnValue:empno8385nameLAWRENCEjobACTORboss8182hiredate2012-08-28salary8500commNULLdeptno50Confirm that both Soderbergh and Lawrence are both in department 50 'Hollywood'.3.10 Write a query.to retrieve the employee number, name, their manager's employee number,department number and their department name for all employees in department 50.The President Mr King has decided to that number 50 is bad luck and want's the movie department to bedepartment number 60.3.11 Update the MOVIE department in the DEPT table so it is now department number (deptno)60.3.12 Rerun the query you wrote in 3.10. Is there any differences to your result set? Why?HINT: Because we had cascade on the foreign key constraint the change to the primary key has beenapplied to all foreign keys referencing the primary key.3.13 Change your query so that you return all employees in department (deptno) 60.Stephen Soderbergh has been fired over creative differences with the president of the company Mr King. MrKing has demanded that Soderbergh be deleted from the EMP table.3.14 Write the delete statement to remove Soderbergh from the EMP tableWhat happened? why did it happen?3.15. Update the record or records that need to be changed before we can delete Soderbergh fromthe Emp table, then delete Soderbergh from the EMP table.3.16 USING DDL Drop the DEPT, EMP, SALGRADE and BONUS tables in that order