ソースコード
select
    district_code as DISTRICT_CODE,
    case when coalesce(district_name,'')='' then '不明' else district_name end as DISTRICT_NAME,
    sum(total_amt) as TOTAL_AMT,
    sum(male_amt) as MALE_AMT,
    sum(female_amt) as FEMALE_AMT
from
    population
group by
    district_code,
    case when coalesce(district_name,'')='' then '不明' else district_name end 
提出情報
提出日時2022/09/22 08:47:00
コンテスト第2回 SQLコンテスト
問題地区名の更新
受験者hamanonz
状態 (詳細)WA
(Wrong Answer: 誤答)
メモリ使用量95 MB
メッセージ
テストケース(通過数/総数)
0/2
状態
メモリ使用量
データパターン1
WA
95 MB
データパターン2
WA
95 MB