SQL-데이터 집계
목차 1.집계함수(sum,avg,max,min,count) 2.집계함수와 null 3.그룹별집계(group by) 4.집계걸과에대한 조건 5.Rank 사용법 1.집계함수(sum,avg,max,min,count) 합,평균,최대값,최소값,개수 구함. sum,avg는 숫자만 구할수있음 max,min,count는 문자와날짜에 사용가능 날짜의 최소값: 가장 오래된날짜 날짜의 최대값: 가장 최근날짜 행의 개수: count(*) 사용 -- 근무중 직원 급여 총액 조회 select sum(salary) as 급여합 from employee where retire_date is NULL; # 부서별 급여합 조회 select dept_id,sum(coalesce(salary,0,)) as 급여합 from employee ..
2022.01.04