ソースコード
select
    IM.PORT_CODE as 港コード,
    PO.PORT_NAME as 港名,
    sum(case when IM.KIND_CODE='110' then AMT else 0 end) as 入国者数,
    sum(case when IM.KIND_CODE='120' then AMT else 0 end) as 出国者数,
    sum(case when IM.KIND_CODE='110' then AMT else 0 end) - sum(case when IM.KIND_CODE='120' then AMT else 0 end)  as 差分
from IMMIGRATION as IM
    inner join PORT as PO on IM.PORT_CODE=PO.PORT_CODE
group by IM.PORT_CODE
having 入国者数>出国者数
order by 差分 desc,IM.PORT_CODE desc
提出情報
提出日時2023/09/28 16:26:46
コンテスト第1回 SQLコンテスト
問題港入出国者分析
受験者abcdefghijklmnopqrstuvwxy
状態 (詳細)WA
(Wrong Answer: 誤答)
メモリ使用量82 MB
メッセージ
テストケース(通過数/総数)
1/2
状態
メモリ使用量
データパターン1
WA
82 MB
データパターン2
AC
77 MB