Question
Write a PL/SQL procedure that finds the student with the highest overall average in every course. In case there is more than one student tied
Write a PL/SQL procedure that finds the student with the highest overall average in every course. In case there is more than one student tied for the highest average, the procedure should return all of the students. The results should be returned in a PL/SQL table of records, where each record has the field term, line number, course title, student ID, student name, and overall average. Also, write an anonymous PL/SQL block that makes a call to the procedure and prints the results to the standard output.
The scores schema is scores(sid,term,lineno,compname,points)
The students schema is student(sid,fname,lname,mname)
The course schema is (term,lineno, cno, a,b,c,d)
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started