ソースコード
select
img_in.port_code as "港コード",
port.port_name as "港名",
img_in.amt as "入国者数",
img_out.amt as "出国者数",
img_in.amt - img_out.amt as "差分"
from
(select * from immigration where kind_code = '110') img_in
inner join (select * from immigration where kind_code = '120') img_out
on img_in.port_code = img_out.port_code
inner join port
on img_in.port_code = port.port_code
where
img_in.amt > img_out.amt
order by
"差分" desc,
"港コード" desc
提出情報
提出日時2022/07/20 21:35:14
コンテスト第1回 SQLコンテスト
問題港入出国者分析
受験者Reliability
状態 (詳細)WA
(Wrong Answer: 誤答)
メモリ使用量103 MB
メッセージ
テストケース(通過数/総数)
1/2
状態
メモリ使用量
データパターン1
WA
103 MB
データパターン2
AC
100 MB