ソースコード
select
po.PORT_CODE as "港コード",
po.PORT_NAME as "港名",
sum((select AMT
from IMMIGRATION
where KIND_CODE = 110 and GROUP_CODE = 120)) as "入国者数",
sum((select AMT
from IMMIGRATION
where KIND_CODE = 120 and GROUP_CODE = 120)) as "出国者数",
sum((select AMT
from IMMIGRATION
where KIND_CODE = 110 and GROUP_CODE = 120)) - 
sum((select AMT
from IMMIGRATION
where KIND_CODE = 120 and GROUP_CODE = 120)) as "差分"
from IMMIGRATION im join  PORT po
on im.PORT_CODE = po.PORT_CODE
group by po.port_code
order by "差分" desc ,po.port_code desc
提出情報
提出日時2022/07/20 18:38:46
コンテスト第1回 SQLコンテスト
問題港入出国者分析
受験者00000
状態 (詳細)WA
(Wrong Answer: 誤答)
メモリ使用量105 MB
メッセージ
テストケース(通過数/総数)
0/2
状態
メモリ使用量
データパターン1
WA
105 MB
データパターン2
WA
92 MB