select sum(temp1),sum(temp2),sum(temp3),sum(temp4)
from testdb
group by emp_no
위 쿼리를 실행하면 사원별로 특정값을 더한 값들이 화면에 나옵니다.
그럴경우 그 밑에 row에 temp1~4에 대한 합계를 적어주고 싶은데요..
select sum(temp1),sum(temp2),sum(temp3),sum(temp4)
from testdb
group by emp_no with rollup
위 쿼리처럼 with rollup 사용하는 방향말고 다른방향으로 합계를 구하는 방법이 있나요?
select sum(temp1),sum(temp2),sum(temp3),sum(temp4)
from testdb
group by emp_no
UNION ALL
select sum(temp1 + temp2 + temp3 + temp4), NULL, NULL, NULL
from testdb
group by emp_no
???
-- catchv