ソースコード
select SABUNTBL.PORT_CODE as '港コード', PORT.PORT_NAME as '港名', SABUNTBL.IMPAMT as '入国者数', SABUNTBL.EXPAMT as '出国者数', SABUNTBL.SABUN as '差分'
from (select IMP.PORT_CODE, IMPAMT, EXPAMT, IMPAMT-EXPAMT as SABUN 
        from (select PORT_CODE, AMT as IMPAMT from IMMIGRATION where KIND_CODE=110 and group_code=120) imp,
             (select PORT_CODE, AMT as EXPAMT from IMMIGRATION where KIND_CODE=120 and group_code=120) exp
       where IMP.PORT_CODE=EXP.PORT_CODE
     ) SABUNTBL, 
     PORT
where SABUNTBL.PORT_CODE=PORT.PORT_CODE
  and SABUNTBL.SABUN > 0
order by SABUNTBL.SABUN desc,
         SABUNTBL.PORT_CODE desc
提出情報
提出日時2023/07/06 09:47:38
コンテスト第1回 SQLコンテスト
問題港入出国者分析
受験者yamada_hi_roky
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量89 MB
メッセージ
テストケース(通過数/総数)
2/2
状態
メモリ使用量
データパターン1
AC
82 MB
データパターン2
AC
89 MB