ORACLE 의 FOR 순환, 커서, 시간 값 함수, 변환 함수 문제
FOR 순환 커서 로 구현 평가 의 지식: FOR 순환, 커서, 시간 값 함수, 변환 함수, DECODE / CASE 용법
이 문 제 는 여러분 의 고수 가 필요 합 니 다.
참고 답안 은 다음 과 같다.
select *
from factory
select to_char(to_date('20080602','yyyymmdd') -1,'yyyymmdd')
from dual
select to_char(add_months(to_date(f.cur_date,'yyyymmdd'),-12),'yyyymmdd')
from dual
create table temp
as
select cur_date,(select
sum(case when cur_date=f.cur_date then cur_perout
else 0
end)
from factory) a,
(select
sum(case when cur_date=to_char(to_date(f.cur_date,'yyyymmdd') -1,'yyyymmdd')
then cur_perout else 0
end)
from factory) b ,
(select
sum(case when substr(cur_date,1,6)=substr(f.cur_date,1,6) then cur_perout
else 0
end)
from factory) c,
(select
sum(case when substr(cur_date,1,4)=substr(f.cur_date,1,4) then cur_perout
else 0
end)
from factory) d,
(select
sum(case when cur_date=to_char(add_months(to_date(f.cur_date,'yyyymmdd'),-12),'yyyymmdd')
then cur_perout else 0
end)
from factory) e
from factory f
where rownum <1
-- where cur_date='20080602';
begin
for temstr in (select * from factory) loop
insert into temp
select temstr.cur_date,-- ( / )
sum(case when cur_date=temstr.cur_date then cur_perout
else 0
end),
sum(case when cur_date=to_char(to_date(temstr.cur_date,'yyyymmdd') -1,'yyyymmdd')
then cur_perout
else 0
end),
sum(case when substr(cur_date,1,6)=substr(temstr.cur_date,1,6) then cur_perout
else 0
end),
sum(case when substr(cur_date,1,4)=substr(temstr.cur_date,1,4) then cur_perout
else 0
end),
sum(case when cur_date=to_char(add_months(to_date(temstr.cur_date,'yyyymmdd'),-12),'yyyymmdd') then cur_perout
else 0
end)
from factory;
end loop;
end;
select * from temp
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.