ソースコード
select
    p.pf_code CODE,
    p.pf_name NAME,
    round(
        sum(cast(case when d.category_code = '120' then d.amt end as real)) * 100 
        /
        sum(cast(case when d.category_code = '110' then d.amt end as real))
    , 1) PERCENTAGE
from DRINK_HABITS d
join PREFECTURE p on d.pf_code = p.pf_code
where 1 = 1
and d.gender_code in ('2', '3')
group by p.pf_code, p.pf_name
order by 3 desc, 1 desc
;
提出情報
提出日時2024/11/02 19:37:11
コンテスト第2回 SQLコンテスト
問題飲酒率
受験者negroponte
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量86 MB
メッセージ
テストケース(通過数/総数)
2/2
状態
メモリ使用量
データパターン1
AC
86 MB
データパターン2
AC
84 MB