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