count number of student per score grade
Hi,
I have 1 table call exam( student_name(varchar2), testscore(int))
I want to count the number of students per testscore level. so the out put i have is:
#students testscore
20 90+ (A)
10 80-89 (B)
5 70-79 (C)
4 60-69 (D)
It does sound simple but I am stuck at the group by clause . Can someone give me a hint?
thanks,
cp
0