**SETUP FILE** s_id, s_first, s_last, s_enroll_start_date, s_grad_date, f_id, f_first, f_last,…
**SETUP FILE**
s_id,
s_first,
s_last,
s_enroll_start_date,
s_grad_date,
f_id,
f_first,
f_last,
course_no,
course_name,
grade
FROM
f_student st,
f_faculty fc,
f_enrollment en,
f_course cr,
f_course_section cs
WHERE
f_id = f_id
AND
s_id = s_id
AND
c_sec_id = c_sec_id
AND
course_no = course_no;
Create a routine (PL/SQL “code”) that pulls attributes from this view into a cursor, and creates the following output in the following format: Example Output: I Do Declare and Decree! My name is Britney IsGiggling. My final grade in MIS 451 was a/an A. The professor, Nice Guy, told me that I did outstanding work! ****************** My name is Mark Serious. My final grade in MIS 441 was a/an C. The professor, The Tyrant, told me that I’ve met the prerequisite. ****************** But we all love DataBases!