ソースコード
select ig.port_code as 港コード,port_name as 港名,
    ig.amt as 入国者数,
    igout.amt as 出国者数,
    ig.amt - igout.amt as 差分
from immigration as ig
left outer join port as pt
on pt.port_code = ig.port_code
left outer join immigration as igout
on igout.port_code = ig.port_code 
and igout.group_code = ig.group_code
and igout.kind_code = '120'
where ig.kind_code = '110' and ig.amt >= igout.amt
order by 差分 desc,ig.port_code desc;
提出情報
提出日時2023/07/24 16:24:36
コンテスト第1回 SQLコンテスト
問題港入出国者分析
受験者InakaMon
状態 (詳細)WA
(Wrong Answer: 誤答)
メモリ使用量92 MB
メッセージ
テストケース(通過数/総数)
1/2
状態
メモリ使用量
データパターン1
WA
92 MB
データパターン2
AC
87 MB