ソースコード
select 港コード,港名,入国者数,出国者数,入国者数-出国者数 as 差分
from (select 
port.PORT_CODE as "港コード",
port.PORT_NAME as "港名",
SUM(case imi.KIND_CODE when "110" then AMT else 0 end) as "入国者数",
SUM(case imi.KIND_CODE when "120" then AMT else 0 end) as "出国者数"
from IMMIGRATION as imi
inner join PORT as port
on imi.PORT_CODE=port.PORT_CODE
group by imi.PORT_CODE)
where 差分>0
order by 差分 desc,港コード desc
提出情報
提出日時2022/09/22 01:51:37
コンテスト第1回 SQLコンテスト
問題港入出国者分析
受験者tk555
状態 (詳細)WA
(Wrong Answer: 誤答)
メモリ使用量94 MB
メッセージ
テストケース(通過数/総数)
1/2
状態
メモリ使用量
データパターン1
WA
81 MB
データパターン2
AC
94 MB