ソースコード
with tmp as (
select
    p.pf_code as "CODE"
    ,p.pf_name as "NAME"
    ,sum(case when category_code = '110' then amt else 0 end) amt_all
    ,sum(case when category_code = '120' then amt else 0 end) amt_habits
from
    drink_habits d left join prefecture p
    on d.pf_code = p.pf_code
where
    gender_code in ('2', '3')
group by
    p.pf_code, p.pf_name
)
select
    "CODE"
    ,"NAME"
    ,round(cast(amt_habits as float) / cast(amt_all as float) * 100, 1) as "PERCENTAGE"
from
    tmp
order by
    "PERCENTAGE" desc, "NAME" desc
;
提出情報
提出日時2024/09/22 05:59:07
コンテスト第2回 SQLコンテスト
問題飲酒率
受験者nosh
状態 (詳細)WA
(Wrong Answer: 誤答)
メモリ使用量85 MB
メッセージ
テストケース(通過数/総数)
1/2
状態
メモリ使用量
データパターン1
WA
85 MB
データパターン2
AC
84 MB