ソースコード
select a.PORT_CODE as 港コード,
a.PORT_NAME as 港名,
b.c as 入国者数,
e.d as 出国者数,
(b.c - e.d) as 差分
from PORT a
join (select PORT_CODE, sum(AMT) as c from IMMIGRATION
where KIND_CODE = "110" and GROUP_CODE = "120" group by PORT_CODE ) b on a.PORT_CODE = b.PORT_CODE
join (select PORT_CODE, sum(AMT) as d from IMMIGRATION
where KIND_CODE = "120" and GROUP_CODE = "120" group by PORT_CODE) e on a.PORT_CODE = e.PORT_CODE
where 差分 > 0
order by 差分 desc,港コード desc
提出情報
提出日時2022/07/20 19:26:58
コンテスト第1回 SQLコンテスト
問題港入出国者分析
受験者csthiro
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量96 MB
メッセージ
テストケース(通過数/総数)
2/2
状態
メモリ使用量
データパターン1
AC
96 MB
データパターン2
AC
92 MB