ソースコード
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;
提出情報
提出日時2023/09/10 15:13:59
コンテスト第6回 SQLコンテスト
問題SDGs推進割合
受験者kate
状態 (詳細)WA
(Wrong Answer: 誤答)
メモリ使用量76 MB
メッセージ
テストケース(通過数/総数)
1/2
状態
メモリ使用量
データパターン1
AC
76 MB
データパターン2
WA
76 MB