c. Leave off the column qualifiers (the aliases) on the equi-join in step b. What do you get? Thiswill give an error because of ambiguous column names.d. Use the COUNT(*) function instead of SELECT * in the query. Use COUNT to show thenumber of rows in the result set of the equi-join and the Cartesian product. Do the equi-join firstwith COUNT, then comment out the WHERE clause for the second answer (put -- in front of theword WHERE).e. Add two more major codes to the Major table as follows: <’IT’, ‘Information Technology’>and <’ST’, ‘Statistics’>. Display all the student names (snames) and majorDescs, but I wouldalso like to see all the majors listed, even if there are no students taking that major. Show yourquery in both ways: first, using ANSI SQL standard syntax, and then using Oracle’s drivingtable(+) concept.