ソースコード
select
    prefecture.pf_code as CODE,
    prefecture.pf_name as NAME,
    round(
        100.0 * sum(case when category_code = '120' then amt else 0 end) /
            sum(case when category_code = '110' then amt else 0 end),
        1
    ) as PERCENTAGE
from
    drink_habits
    inner join prefecture
    using (pf_code)
where
    gender_code in ('2', '3')
group by
    pf_code
order by
    percentage desc,
    prefecture.pf_code desc
;
提出情報
提出日時2022/12/12 19:43:51
コンテスト第2回 SQLコンテスト
問題飲酒率
受験者tekihei2317
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量78 MB
メッセージ
テストケース(通過数/総数)
2/2
状態
メモリ使用量
データパターン1
AC
78 MB
データパターン2
AC
78 MB