select a.상품id, a.과금액, b.수납액, b.수납일시
from (select 고객id, 상품id, 과금연월, sum(과금액) 과금액
from 과금
where 과금연열 = :과금연월
and 고객id = :고객id
group by 고객id, 상품id, 과금연월) a
, 수납 b
where b.고객id(+) = a.고객id
and b.상품id(+) = a.상품id
and b.과금연월(+) = a.과금연월
order by a.상품id, b.순번
select a.상품id, a.과금액, b.수납액, b.수납일시
from 과금 a, 수납 b
where a.과금연월 = :과금연월
and a.고객id = :고객id
and b.고객id(+) = a.고객id
and b.상품id(+) = a.상품id
and b.과금연월(+) = a.과금연월
order by a.상품id, b.순번
h3.사례2
select 과금.고객id, 과금.상품id, 과금.과금액, 가입상품.가입일시
from 과금,
(select 고객id, 상품id, min(가입일시) 가입일시
from 고객별상품라인
group by 고객id, 상품id) 가입상품
where 과금.고객id(+) = 가입상품.고객id
and 과금.상품id(+) = 가입상품.상품id
and 과금.과금연월(+) = :yyyymm
select 과금.고객id, 과금.상품id, 과금.과금액, 가입상품.가입일시
from 과금, 가입상품
where 과금.고객id(+) = 가입상품.고객id
and 과금.상품id(+) = 가입상품.상품id
and 과금.과금연월(+) = :yyyymm
h3.사례3
select ...
from (
select ...
from 소송심급피해대상 a
, 소송대상청구 b
, 소송심급 c
, 소송 d
, 소송결재 e
, 민원마스터 f
, VOC유형코드 g
,(select ...
from (select ..., rank() over (partition by ... order by 종결년도 desc, 종결순번 desc) rank
from 소송심급대상종결 a )
where rank = 1) h
,(select ...
from (select ..., rank() over (partition by ... order by 마감일자 desc) rank
from 피해청구 a )
where rank = 1) i
,(select ...
from (select ..., rank() over (partition by ... order by a.판결년도 desc, a.순번 desc) rank
from 판결 a, 소송피해내용 b, 소송금 c, 소송소득내용 d,
(select ...
from (select..., rank() over (partition by ... order by 순번 desc) rank
from 소송결재
where ...)
where rank = 1) e
where a.판결년도 = b.판결년도
and a.판결순번 = b.판결순번
and ...)
where rank = 1 ) j
,(select ...
from (select ..., rank() over (partition by ... order by. a.특인차수 desc, b.순번 desc) rank
from 특인 a, 특인결재 b
where a.특인년도 = b.특인년도
and a.특인순번 = b.특인순번
and ...)
where rnak = 1) k
,(select ...
from (select ..., rank() over (partition by ... order by. a.소송심급피해대상순번 desc) rank
from 소송대상청구 a, 소송심급피해대상 b, 소송심급 d, 소송 d
where ...)
where rank = 1)
where ...
);