Skip to content
Advertisement

Update Oracle SQL Query in a procedure but throwing missing right parenthesis error

The table sc contains the student id and the course id they attended, followed by it’s corresponding grade.

The table course contains the course id and corresponding credits

The table student1 contains the student id and corresponding info.

In this case I need to calculate the average score of every student and add the rank to table student1

The code is following:

This is the error I got:

The error is located on : order by sum(sc.grade*course.credit)/sum(course.credit) desc);

Anyone can help me? I am new to Oracle 11g currently studying it.

I tried to run the subquery of the update SQL but it performed as good as expected.

Just can’t figure it out.

Advertisement

Answer

Note: I’m pretty sure that the Oracle optimizer is not naive enough to regenerate the “ranked_students” subquery below for every row updated, but of course one should always test your optimizations on significant amounts of data where applicable, and use “explain plan” to decide what’s best.

  • It appears to me that the issue with your query is that the rank() function is not producing the correct results, because it is only looking at a single student at a time, and therefore that student’s rank is always #1…with respect to themselves!

  • I also think you probably want dense_rank() in case two students have equal GPAs.

So I made an example query that uses a “with” clause to rank all of the students (that don’t have a grade < 60), and then uses that to update the student1 table.

Here are statements to recreate my testing tables:

The above tables describe Alice as having a high GPA, Bob as having a lower one, and Mary having a grade that is below 60 which disqualifies her from ranking.

Here is a query to illustrate the GPA averages:

User contributions licensed under: CC BY-SA
6 People found this is helpful
Advertisement