ソースコード
select
    PORT.PORT_CODE as "港コード",
    PORT.PORT_NAME as "港名",
    im_in.AMT as "入国者数",
    im_out.AMT as "出国者数",
    im_in.AMT - im_out.AMT as "差分"
from
    PORT
    join IMMIGRATION im_in on PORT.PORT_CODE = im_in.PORT_CODE
    and im_in.KIND_CODE = "110"
    join IMMIGRATION im_out on PORT.PORT_CODE = im_out.PORT_CODE
    and im_out.KIND_CODE = "120"
where
    "差分" > 0
group by
    PORT.PORT_CODE
order by
    "差分" desc,
    "港コード" desc;
提出情報
提出日時2023/11/05 02:56:57
コンテスト第1回 SQLコンテスト
問題港入出国者分析
受験者c8a
状態 (詳細)WA
(Wrong Answer: 誤答)
メモリ使用量89 MB
メッセージ
テストケース(通過数/総数)
1/2
状態
メモリ使用量
データパターン1
WA
89 MB
データパターン2
AC
88 MB