ソースコード
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, SUM(AMT) as IMPAMT from IMMIGRATION where KIND_CODE=110 and group_code=120 group by PORT_CODE) imp,
             (select PORT_CODE, SUM(AMT) as EXPAMT from IMMIGRATION where KIND_CODE=120 and group_code=120 group by PORT_CODE) 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:44:35
コンテスト第1回 SQLコンテスト
問題港入出国者分析
受験者yamada_hi_roky
状態 (詳細)WA
(Wrong Answer: 誤答)
メモリ使用量89 MB
メッセージ
テストケース(通過数/総数)
1/2
状態
メモリ使用量
データパターン1
WA
89 MB
データパターン2
AC
78 MB