ソースコード
select
	imm.PORT_CODE as '港コード',
	po.PORT_NAME as '港名',
	sum(
	case
	when imm.KIND_CODE = '110' then AMT else 0 end	
	) as '入国者数',

	sum(
	case
	when imm.KIND_CODE = '120' then AMT else 0 end	
	) as '出国者数',
	
	sum(
	case
	when imm.KIND_CODE = '110' then AMT else 0 end	
	) 
	- sum(
	case
	when imm.KIND_CODE = '120' then AMT else 0 end	
	) as '差分'
from
	IMMIGRATION as imm
	left join PORT as po
	using(PORT_CODE)
where imm.group_code = 120
group by imm.PORT_CODE
having 0 < 差分
order by 5 desc,1
;

提出情報
提出日時2024/11/06 10:24:45
コンテスト第1回 SQLコンテスト
問題港入出国者分析
受験者yuta
状態 (詳細)WA
(Wrong Answer: 誤答)
メモリ使用量91 MB
メッセージ
テストケース(通過数/総数)
1/2
状態
メモリ使用量
データパターン1
WA
91 MB
データパターン2
AC
84 MB