10. Next, run thelab_03_10.sqlscript to create theEMP_HISTtable.a.Increase the size of the e-mail column to 45.b.Merge the data in theEMP_DATAtable created in the last lab into the data in theEMP_HISTtable. Assume that the data in the externalEMP_DATAtable is the mostup-to-date. If a row in theEMP_DATAtable matches the EMP_HIST table, update thee-mail column of theEMP_HISTtable to match theEMP_DATAtable row. If a rowin theEMP_DATAtable does not match, insert it into theEMP_HISTtable. Rows areconsidered matching when the employee’s first and last names are identical.MERGE INTO EMP_HIST f USING EMP_DATA h ON (f.first_name = h.first_name AND f.last_name = h.last_name) WHEN MATCHED THEN UPDATE SET f.email = h.email WHEN NOT MATCHED THEN INSERT (f.first_name , f.last_name , f.email) VALUES (h.first_name , h.last_name , h.email);Oracle Database 10g: SQL Fundamentals IIA-13