コンテストの制限時間が終了しました。
以降も提出を行うことができますが、順位集計には反映されません。
以降も提出を行うことができますが、順位集計には反映されません。
ソースコード
with org as (
select * from ENROLLMENT_STATUS
where SURVEY_YEAR = 2020
-- and PF_CODE = '36000'
-- order by age
), org2 as (
select
pf_code
, '小学校' as kind
, 1 as rank
, sum(case when ELEMENTARY is not null then ELEMENTARY else 0 end) as amt
from org
group by PF_CODE
union
select
pf_code
, '中学校' as kind
, 2 as rank
, sum(case when MIDDLE is not null then MIDDLE else 0 end) as amt
from org
group by PF_CODE
union
select
pf_code
, '高学校' as kind
, 3 as rank
, sum(case when HIGH is not null then HIGH else 0 end) as amt
from org
group by PF_CODE
union
select
pf_code
, '短大' as kind
, 4 as rank
, sum(case when JUNIOR_CLG is not null then JUNIOR_CLG else 0 end) as amt
from org
group by PF_CODE
union
select
pf_code
, '大学' as kind
, 5 as rank
, sum(case when COLLEGE is not null then COLLEGE else 0 end) as amt
from org
group by PF_CODE
union
select
pf_code
, '大学院' as kind
, 6 as rank
, sum(case when GRADUATE is not null then GRADUATE else 0 end) as amt
from org
group by PF_CODE
)
select
'2020' as SV_YEAR
, b.pf_name as PREFECTURE
, a.kind as KIND
, a.amt as AMT
from org2 a
inner join prefecture b
on a.pf_code = b.pf_code
where a.amt > 0
order by a.pf_code, a.rank
;
提出情報
提出日時 | 2023/03/13 23:21:43 |
コンテスト | 第2回 SQLコンテスト |
問題 | 就学状況の表示変換 |
受験者 | s4wara_o |
状態 (詳細) | WA (Wrong Answer: 誤答) |
メモリ使用量 | 79 MB |
メッセージ
テストケース(通過数/総数)
0/2
状態
メモリ使用量
データパターン1
WA
79 MB
データパターン2
WA
76 MB