ソースコード
-- https://topsic-contest.jp/contests/contest00x/problems/contest00x-3

select
    imi.port_code as 港コード,
    port.port_name as 港名,
    sum(case when kind_code == 110 then amt else null end) as 入国者数,
    sum(case when kind_code == 120 then amt else null end) as 出国者数,
    (sum(case when kind_code == 110 then amt else null end) - sum(case when kind_code == 120 then amt else null end)) as 差分
from
    immigration imi 
left join 
    port 
on imi.port_code = port.port_code
group by 
    imi.port_code,
    port.port_name
order by 
    (sum(case when kind_code == 110 then amt else null end) - sum(case when kind_code == 120 then amt else null end)) desc,
    port.port_code desc
    ;
提出情報
提出日時2022/09/16 15:24:09
コンテスト第1回 SQLコンテスト
問題港入出国者分析
受験者kokiando
状態 (詳細)WA
(Wrong Answer: 誤答)
メモリ使用量81 MB
メッセージ
テストケース(通過数/総数)
0/2
状態
メモリ使用量
データパターン1
WA
81 MB
データパターン2
WA
79 MB