8.17 确实没问题:
SQL> create table diaryaudit(employeeid  number(2),score number(3));
SQL> insert into diaryaudit values(1,200);
SQL> insert into diaryaudit values(3,250);
insert into diaryaudit values(31,650);
SQL> commit;
SQL> select * from diaryaudit;EMPLOYEEID      SCORE
---------- ----------
         1        200
         3        250
        31        650SQL> select sum(score) as total  from diaryaudit group by employeeid order by total;     TOTAL
----------
       200
       250
       650SQL> select rownum,T.total from 
  2  (select sum(score) as total  from diaryaudit group by employeeid order by total desc ) T;    ROWNUM      TOTAL
---------- ----------
         1        650
         2        250
         3        200让8.05的人执行上述语句