ソースコード
with out1 as(
    select
        t.PORT_CODE,
        t.GROUP_CODE,
        t.KIND_CODE,
        t.AMT,
        m.PORT_NAME
    from
        IMMIGRATION as t
    inner join
        PORT as m on t.PORT_CODE=m.PORT_CODE
    where
        t.KIND_CODE = '120'
        and
        t.GROUP_CODE = '120'
)
select
    in1.PORT_CODE as 港コード,
    out1.PORT_NAME as 港名,
    in1.AMT as 入国者数,
    out1.AMT as 出国者数,
    (in1.AMT - out1.AMT) as 差分
from
    IMMIGRATION as in1
inner join
    out1 on (
            in1.PORT_CODE = out1.PORT_CODE
            and
            in1.GROUP_CODE  = out1.GROUP_CODE 
            )
where (
    in1.KIND_CODE = '110'
    and
    in1.GROUP_CODE = '120'
    and
    差分 > 0
    )
order by
    差分 desc,
    港コード
;

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