ソースコード
select  dh.pf_code as CODE,
        pf.pf_name as NAME,
        round((cast(毎日飲酒 as float) / cast(総数 as float) * 100),1) as PERCENTAGE
from (
        select  pf_code,
                sum(case when category_code = "110"  then amt else 0 end) as 総数,
                sum(case when category_code = "120"  then amt else 0 end) as 毎日飲酒
        from drink_habits
        where gender_code = "2" or gender_code = "3"
        group by pf_code
) as dh
inner join prefecture as pf on dh.pf_code = pf.pf_code
order by PERCENTAGE desc, dh.pf_code asc;
提出情報
提出日時2023/07/18 11:10:43
コンテスト第2回 SQLコンテスト
問題飲酒率
受験者hiramo_
状態 (詳細)WA
(Wrong Answer: 誤答)
メモリ使用量77 MB
メッセージ
テストケース(通過数/総数)
1/2
状態
メモリ使用量
データパターン1
WA
77 MB
データパターン2
AC
76 MB