ソースコード
with drunker_by_pref as (
    select
        DRINK_HABITS.PF_CODE,
        sum( case DRINK_HABITS.CATEGORY_CODE when '110' then AMT else 0 end ) as total,
        sum( case DRINK_HABITS.CATEGORY_CODE when '120' then AMT else 0 end ) as drunker
    from
        DRINK_HABITS
    where
        GENDER_CODE in ('2', '3')
    group by DRINK_HABITS.PF_CODE
) select
    drunker_by_pref.PF_CODE as CODE,
    PREFECTURE.PF_NAME as NAME,
    round( cast( drunker_by_pref.drunker as real ) / cast( drunker_by_pref.total as real ) * 100, 1 ) as PERCENTAGE
from
    drunker_by_pref
    join PREFECTURE on PREFECTURE.PF_CODE = drunker_by_pref.PF_CODE
order by PERCENTAGE desc, CODE desc
;
提出情報
提出日時2023/04/20 15:45:12
コンテスト第2回 SQLコンテスト
問題飲酒率
受験者masanorih
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量77 MB
メッセージ
テストケース(通過数/総数)
2/2
状態
メモリ使用量
データパターン1
AC
77 MB
データパターン2
AC
76 MB