ソースコード
select
    p.PF_CODE as CODE,
    p.PF_NAME as NAME,
    round(cast(s.promote_municipality as real)/cast(s.municipality_ttl as real)*100, 2) as RATIO
from
    sdgs as s
inner join
    prefecture as p
on
    p.pf_code = s.pf_code
where
    survey_year == "2022"
order by
    ratio desc,
    code asc;
提出情報
提出日時2023/04/17 10:34:55
コンテスト第6回 SQLコンテスト
問題SDGs推進割合
受験者UT
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量97 MB
メッセージ
テストケース(通過数/総数)
2/2
状態
メモリ使用量
データパターン1
AC
97 MB
データパターン2
AC
79 MB