ソースコード
select pref.PF_CODE as CODE
     , pref.PF_NAME as NAME
     , (select round(cast(sd.PROMOTE_MUNICIPALITY as real) / cast(sd.MUNICIPALITY_TTL as real) * 100, 2)
          from SDGS sd
         where sd.PF_CODE = pref.PF_CODE
           and sd.SURVEY_YEAR = 2022
       ) as RATIO
  from PREFECTURE pref
 where exists (select 'dummy'
                 from SDGS sd
                where pref.PF_CODE = sd.PF_CODE
                  and sd.SURVEY_YEAR = 2022)
 order by RATIO desc, pref.PF_CODE asc
提出情報
提出日時2023/06/02 18:41:41
コンテスト第6回 SQLコンテスト
問題SDGs推進割合
受験者satoshi20021111
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量81 MB
メッセージ
テストケース(通過数/総数)
2/2
状態
メモリ使用量
データパターン1
AC
78 MB
データパターン2
AC
81 MB