ソースコード
select
d.pf_code as CODE
,p.pf_name as NAME
,round(cast(sum(d.amt) as float)*100.0/cast(sum(total.amt)as float),1)as PERCENTAGE
from drink_habits as d
inner join prefecture as p
on d.pf_code = p.pf_code
inner join drink_habits as total
on total.pf_code = d.pf_code
and total.category_code='110'
and d.category_code ='120'
and total.gender_code = d.gender_code
and total.gender_code !='110'
group by code,name
order by PERCENTAGE desc,CODE desc
提出情報
提出日時2024/04/16 10:55:50
コンテスト第2回 SQLコンテスト
問題飲酒率
受験者HamamatsuUnagi
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量85 MB
メッセージ
テストケース(通過数/総数)
2/2
状態
メモリ使用量
データパターン1
AC
83 MB
データパターン2
AC
85 MB