1. Write a script to build the MY_EMPLOYEE table to be used for the lab. 2. Describe the structure of the MY_EMPLOYEE table to identify the column names. 3. Add the first row of data to the MY_EMPLOYEE table from the following sample data. Do not list the columns in the INSERT clause. 4. Populate the MY_EMPLOYEE table with the second row of sample data from the preceding list. This time, list the columns explicitly in the INSERT clause. 5. Write an insert statement in a text file named loademp.sql to load rows into the MY_EMPLOYEE table. Concatenate the first letter of the first name and the first seven characters of the last name to produce the user ID. 6. Populate the table with the next two rows of sample data by running the insert statement in the script that you created. 7. Verify your changes to the table.