ソースコード
select
    PORT_CODE as '港コード'
    ,PORT_NAME as '港名'
    ,POP_IN as '入国者数'
    ,POP_OUT as '出国者数'
    ,POP_IN-POP_OUT as '差分'
from (
select
    P.PORT_CODE
    ,S.PORT_NAME
    ,sum(
        case when KIND_CODE='110' then AMT end )
        as POP_IN
    ,sum(
        case when KIND_CODE='120' then AMT end )
        as POP_OUT
from
    IMMIGRATION P
    inner join
        PORT S
        on P.PORT_CODE=S.PORT_CODE
    inner join
        GRP G
        on G.GROUP_CODE=P.GROUP_CODE
where
    GROUP_NAME='外国人'
group by 1,2
) foo
where
    POP_IN-POP_OUT > 0
order by 5 desc, 1 desc
;
提出情報
提出日時2022/07/20 20:53:40
コンテスト第1回 SQLコンテスト
問題港入出国者分析
受験者1120011
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量103 MB
メッセージ
テストケース(通過数/総数)
2/2
状態
メモリ使用量
データパターン1
AC
98 MB
データパターン2
AC
103 MB