ソースコード
select
	t1.PORT_CODE as 港コード
	,PORT_NAME as 港名
	,sum(case when KIND_CODE = 110 then AMT else 0 end) as 入国者数
	,sum(case when KIND_CODE = 120 then AMT else 0 end) as 出国者数
	,sum(case when KIND_CODE = 110 then AMT else 0 end) - sum(case when KIND_CODE = 120 then AMT else 0 end) as 差分
from
	IMMIGRATION as t1
inner join PORT as t2
	on t1.PORT_CODE = t2.PORT_CODE
where 
    t1.GROUP_CODE = 120
group by
   	t1.PORT_CODE 
order by
	差分 desc
	,港コード desc
提出情報
提出日時2022/09/20 19:46:14
コンテスト第1回 SQLコンテスト
問題港入出国者分析
受験者sato
状態 (詳細)WA
(Wrong Answer: 誤答)
メモリ使用量80 MB
メッセージ
テストケース(通過数/総数)
0/2
状態
メモリ使用量
データパターン1
WA
80 MB
データパターン2
WA
75 MB