ソースコード
select
  im.PORT_CODE as 港コード
, p.PORT_NAME as 港名
, sum(case when im.KIND_CODE = 110 then im.AMT else 0 end) as 入国者数
, sum(case when im.KIND_CODE = 120 then im.AMT else 0 end) as 出国者数
, sum(case when im.KIND_CODE = 110 then im.AMT else 0 end)
  - sum(case when im.KIND_CODE = 120 then im.AMT else 0 end) as 差分
from IMMIGRATION im
     inner join PORT p
       on p.PORT_CODE = im.PORT_CODE 
where
  im.GROUP_CODE = 120

group by
  im.PORT_CODE
, p.PORT_NAME
order by 差分 desc
, im.PORT_CODE desc
提出情報
提出日時2022/09/21 02:08:06
コンテスト第1回 SQLコンテスト
問題港入出国者分析
受験者kiharu
状態 (詳細)WA
(Wrong Answer: 誤答)
メモリ使用量80 MB
メッセージ
テストケース(通過数/総数)
0/2
状態
メモリ使用量
データパターン1
WA
80 MB
データパターン2
WA
78 MB