ソースコード
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
having
 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) 
order by 差分 desc
, im.PORT_CODE desc
提出情報
提出日時2022/09/21 02:10:26
コンテスト第1回 SQLコンテスト
問題港入出国者分析
受験者kiharu
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量82 MB
メッセージ
テストケース(通過数/総数)
2/2
状態
メモリ使用量
データパターン1
AC
82 MB
データパターン2
AC
81 MB