ソースコード
select
    p.pf_code as CODE,
    p.pf_name as NAME,
    round((sum(case when d.category_code = '120' then cast(amt as real) else null end) 
    / sum(case when d.category_code = '110' then cast(amt as real) else null end)) * 100 ,1) as PERCENTAGE
from
    drink_habits d left join prefecture p on d.pf_code = p.pf_code
where
    d.gender_code in ('2', '3')
group by
    p.pf_code
order by
    PERCENTAGE desc,
    CODE DESC
;
提出情報
提出日時2023/09/17 09:44:58
コンテスト第2回 SQLコンテスト
問題飲酒率
受験者nosh
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量77 MB
メッセージ
テストケース(通過数/総数)
2/2
状態
メモリ使用量
データパターン1
AC
77 MB
データパターン2
AC
76 MB