반응형
select
to_char(hire_date, 'YYYY')
, count(*)
, LAG(count(*)) over (order by to_char(hire_date, 'YYYY'))
from employees
group by to_char(hire_date, 'YYYY')
order by to_char(hire_date, 'YYYY');
to_char(hire_date, 'YYYY')
, count(*)
, LAG(count(*)) over (order by to_char(hire_date, 'YYYY'))
from employees
group by to_char(hire_date, 'YYYY')
order by to_char(hire_date, 'YYYY');
반응형
'Oracle' 카테고리의 다른 글
[CMD] 명령어 (0) | 2015.07.29 |
---|---|
[윈도우 함수] ratio_to_report로 특정 비율 구하기 (0) | 2015.07.29 |
[윈도우 함수] 범위를 주어서 집계값을 조회 (0) | 2015.07.29 |
[ntile]레코드를 일정 비율로 분할해준다. (0) | 2015.07.29 |
컬럼당 최대값 최소값 구하기 keep(dense_rank first order by salary desc) (0) | 2015.07.29 |
댓글