출처 - http://annehouse.tistory.com/45

 

1. Group by

SQL> select             avg(saPay), sum(saPay) from sawon; (O)
SQL> select deptNo, avg(saPay), sum(saPay) from sawon;
(X)
     20개의 data┘           └각각 1개 data┘
*
ORA-00937: 단일 그룹의 그룹 함수가 아닙니다
=> 해결책! GROUP BY
SQL> select deptNo, avg(saPay), sum(saPay) from sawon group by deptNo;

+ Recent posts