ソースコード
select
im_in.PORT_CODE as 港コード,
po.PORT_NAME as 港名,
im_in.AMT as 入国者数,
im_out.AMT as 出国者数,
im_in.AMT - im_out.AMT as 差分

from
IMMIGRATION as im_in
inner join GRP as gr
on im_in.GROUP_CODE = gr.GROUP_CODE
inner join PORT as po
on im_in.PORT_CODE = po.PORT_CODE
inner join IMMIGRATION as im_out
on im_in.PORT_CODE = im_out.PORT_CODE
and im_out.KIND_CODE = "120"

where
im_in.KIND_CODE = "110"
and im_in.GROUP_CODE = "120"
and im_in.AMT > im_out.AMT

order by
差分 desc, 港コード desc;

-- これいけたのでは!?
-- 初めて問題3最初から自力でとけたよ〜!なみだなみだ


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