ソースコード
select
 f.PF_CODE as "都道府県コード"
,f.PF_NAME as "都道府県名"
,max(case when f.rnk = 1 then NATION_NAME else null end) as "1位 国名"
,max(case when f.rnk = 1 then AMT else null end) as "1位 人数"
,max(case when f.rnk = 2 then NATION_NAME else null end) as "2位 国名"
,max(case when f.rnk = 2 then AMT else null end) as "2位 人数"
,max(case when f.rnk = 3 then NATION_NAME else null end) as "3位 国名"
,max(case when f.rnk = 3 then AMT else null end) as "3位 人数"
,sum(AMT) as "合計人数"
from (select 
		 f.PF_CODE
		,p.PF_NAME
		,f.NATION_CODE
		,n.NATION_NAME
		,f.AMT
		,rank() over(partition by f.PF_CODE order by f.AMT desc,f.NATION_CODE asc) rnk
		from FOREIGNER f
		inner join NATIONALITY n
			on f.NATION_CODE = n.NATION_CODE
		inner join PREFECTURE p
			on f.PF_CODE = p.PF_CODE
		where f.NATION_CODE not in ('113')) f
group by 
 f.PF_CODE 
,f.PF_NAME 
order by 
 sum(AMT) desc
提出情報
提出日時2022/07/20 20:50:58
コンテスト第1回 SQLコンテスト
問題外国籍分布
受験者tom
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量103 MB
メッセージ
テストケース(通過数/総数)
2/2
状態
メモリ使用量
データパターン1
AC
103 MB
データパターン2
AC
100 MB