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