ソースコード
select
    a.pf_code as CODE,
    b.pf_name as NAME,
    cast(
    cast(
    100.0 * 100.0 * cast(a.promote_municipality as numeric)
    / cast(a.municipality_ttl as numeric) 
    as integer) / 100.0 as numeric) as RATIO
from sdgs as a
inner join prefecture as b
using(pf_code)
where a.survey_year = 2022
order by 3 desc, 1;
提出情報
提出日時2023/05/14 11:34:56
コンテスト第6回 SQLコンテスト
問題SDGs推進割合
受験者miotsukushi0800
状態 (詳細)WA
(Wrong Answer: 誤答)
メモリ使用量76 MB
メッセージ
テストケース(通過数/総数)
0/2
状態
メモリ使用量
データパターン1
WA
76 MB
データパターン2
WA
75 MB