ソースコード
select
  dh.PF_CODE as CODE
  ,pf.PF_NAME as NAME
  ,round(100 * cast(sum(case when category_code = '120' and gender_code in ('2','3') then amt else 0 end) as real)/cast(sum(amt) as real), 1) as PERCENTAGE
from drink_habits dh
join prefecture pf
  on dh.pf_code = pf.pf_code
group by 1,2
order by percentage desc, code
;
提出情報
提出日時2022/09/22 06:22:14
コンテスト第2回 SQLコンテスト
問題飲酒率
受験者trippy
状態 (詳細)WA
(Wrong Answer: 誤答)
メモリ使用量79 MB
メッセージ
テストケース(通過数/総数)
0/2
状態
メモリ使用量
データパターン1
WA
79 MB
データパターン2
WA
78 MB