ソースコード
with w as (
    select
        i.PORT_CODE as PORT_CODE,
        p.PORT_NAME as PORT_NAME,
        sum(case when KIND_CODE = '110' then AMT else 0 end) as AMT_IN,
        sum(case when KIND_CODE = '120' then AMT else 0 end) as AMT_OUT
    from
        IMMIGRATION as i
    join
        PORT as p 
        on i.PORT_CODE = p.PORT_CODE
    where
        i.GROUP_CODE = '120'
    group by 
        p.PORT_CODE, p.PORT_NAME
)

select
 PORT_CODE as 港コード,
 PORT_NAME as 港名,
 AMT_IN    as 入国者数,
 AMT_OUT   as 出国者数,
 AMT_IN - AMT_OUT as 差分
from 
    w
where 
 AMT_IN > AMT_OUT
order by 
 差分 desc,
 港コード desc
;
提出情報
提出日時2022/07/20 21:26:06
コンテスト第1回 SQLコンテスト
問題港入出国者分析
受験者deep_ads
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量102 MB
メッセージ
テストケース(通過数/総数)
2/2
状態
メモリ使用量
データパターン1
AC
102 MB
データパターン2
AC
41 MB