ソースコード
with tbl as (
    select 
        i.port_code,
        p.port_name,
        max(case when kind_code = 110 then amt else 0 end) as amt_in,
        max(case when kind_code = 120 then amt else 0 end) as amt_out
    from immigration i
    join grp g on i.group_code = g.group_code
    join port p on i.port_code = p.port_code
    group by 1, 2
)

select
    port_code as '港コード',
    port_name as '港名',
    amt_in as '入国者数',
    amt_out as '出国者数',
    amt_in - amt_out as '差分'
from tbl
where amt_in >= amt_out
order by 5 desc, 1 desc;
提出情報
提出日時2022/11/25 20:51:57
コンテスト第1回 SQLコンテスト
問題港入出国者分析
受験者nhsykym
状態 (詳細)WA
(Wrong Answer: 誤答)
メモリ使用量84 MB
メッセージ
テストケース(通過数/総数)
1/2
状態
メモリ使用量
データパターン1
WA
84 MB
データパターン2
AC
82 MB