ソースコード
with
    a as (
        select
            pf_code
            ,round(cast(promote_municipality as float) * 100 / cast(municipality_ttl as float), 2) as RATIO
        from
            sdgs
        where
            survey_year = 2022
    )

select
    a.pf_code as CODE
    ,p.pf_name as NAME
    ,a.RATIO
from
    a
left join
    prefecture p
on
    a.pf_code = p.pf_code
order by
    3 desc, 1
提出情報
提出日時2023/06/21 17:42:53
コンテスト第6回 SQLコンテスト
問題SDGs推進割合
受験者takahirostone
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量79 MB
メッセージ
テストケース(通過数/総数)
2/2
状態
メモリ使用量
データパターン1
AC
78 MB
データパターン2
AC
79 MB