select test_id, test_nm, sum(salary)
from test
group by test_id,test_nm
이런식으로 select 로 검색하는 column 중 집합(sum) 빼고는 모두
group by 컬럼으로 표시되어야 한다.
select test_id, test_nm, sum(salary)
from test
group by test_id,test_nm
이런식으로 select 로 검색하는 column 중 집합(sum) 빼고는 모두
group by 컬럼으로 표시되어야 한다.
댓글