コンテストの制限時間が終了しました。
以降も提出を行うことができますが、順位集計には反映されません。
以降も提出を行うことができますが、順位集計には反映されません。
ソースコード
with TOTAL as (
select
sum(SD.UNITPRICE*SD.SALES_QTY) as SAL_TOTAL
from SALES as S
inner join SALES_DTL as SD
on S.SALES_NO=SD.SALES_NO
where S.SALES_DATE like '2023-06%'
), SALES_AMT as (
select
SD.ITEM_CODE
, sum(SD.UNITPRICE*SD.SALES_QTY) as SAL_AMT
from SALES as S
inner join SALES_DTL as SD
on S.SALES_NO=SD.SALES_NO
where S.SALES_DATE like '2023-06%'
group by SD.ITEM_CODE
), SALES_CML_AMT as (
select
ITEM_CODE
, SAL_AMT
, sum(SAL_AMT) over(order by SAL_AMT desc range between unbounded preceding and current row) as CML_AMT
from SALES_AMT
)
select
CODE
, NAME
, SAL_AMT
, CML_AMT
, SAL_COMP || '%' as SAL_COMP
, CML_COMP || '%' as TTL_COMP
, case
when CML_COMP<=40.0 then 'A'
when CML_COMP<=80.0 then 'B'
else 'C'
end as RANK
from (select
SCM.ITEM_CODE as CODE
, ITEM_NAME as NAME
, SAL_AMT
, CML_AMT
, round(cast(SAL_AMT as real) / T.SAL_TOTAL * 100, 1) as SAL_COMP
, round(cast(CML_AMT as real) / T.SAL_TOTAL * 100, 1) as CML_COMP
from SALES_CML_AMT as SCM, TOTAL as T
inner join ITEM as I on SCM.ITEM_CODE=I.ITEM_CODE
)
order by SAL_AMT desc, CODE desc
;
提出情報
提出日時 | 2024/09/30 09:44:06 |
コンテスト | 第7回 SQLコンテスト |
問題 | ABC分析 |
受験者 | poapoa1010 |
状態 (詳細) | AC (Accepted: 正答) |
メモリ使用量 | 89 MB |
メッセージ
テストケース(通過数/総数)
3/3
状態
メモリ使用量
データパターン1
AC
89 MB
データパターン2
AC
86 MB
データパターン3
AC
86 MB