ソースコード
select
	 i.PORT_CODE as 港コード
	,p.PORT_NAME as 港名
	,i.AMT as 入国者数
	,o.AMT as 出国者数
	,i.AMT - o.AMT as 差分
from
	(
		select
			PORT_CODE
			,AMT
		from
			IMMIGRATION as i
			inner join GRP as g
				on i.GROUP_CODE = g.GROUP_CODE
		where
			KIND_CODE = '110'
		and g.GROUP_NAME = '外国人'
	) as i
	inner join (
		select
			PORT_CODE
			,AMT
		from
			IMMIGRATION as i
			inner join GRP as g
				on i.GROUP_CODE = g.GROUP_CODE
		where
			KIND_CODE = '120'
		and g.GROUP_NAME = '外国人'
	) as o
		on i.PORT_CODE = o.PORT_CODE
	inner join PORT as p
		on i.PORT_CODE = p.PORT_CODE
where
	i.AMT > o.AMT
order by
	5 desc, 1 desc
提出情報
提出日時2022/07/20 17:31:36
コンテスト第1回 SQLコンテスト
問題港入出国者分析
受験者adutam
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量101 MB
メッセージ
テストケース(通過数/総数)
2/2
状態
メモリ使用量
データパターン1
AC
99 MB
データパターン2
AC
101 MB