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