コンテストの制限時間が終了しました。
以降も提出を行うことができますが、順位集計には反映されません。
以降も提出を行うことができますが、順位集計には反映されません。
ソースコード
select
dh.pf_code as CODE
, pf.pf_name as NAME
, round(100.0 * sum(case dh.category_code when '120' then dh.amt else 0 end)/sum(case dh.category_code when '110' then dh.amt else 0 end),1) as PERCENTAGE
from DRINK_HABITS as dh
inner join prefecture as pf on pf.pf_code=dh.pf_code
where dh.gender_code in ('2','3')
group by dh.pf_code
order by percentage desc, dh.pf_code desc;
提出情報
提出日時 | 2024/05/14 14:57:21 |
コンテスト | 第2回 SQLコンテスト |
問題 | 飲酒率 |
受験者 | sjty9561 |
状態 (詳細) | AC (Accepted: 正答) |
メモリ使用量 | 85 MB |
メッセージ
テストケース(通過数/総数)
2/2
状態
メモリ使用量
データパターン1
AC
85 MB
データパターン2
AC
83 MB