ソースコード
select
t1.port_code as 港コード,
pt.port_name as 港名,
t1.amt as 入国者数,
t2.amt as 出国者数,
t1.amt - t2.amt as 差分
from immigration as t1
inner join immigration as t2
on t1.port_code = t2.port_code
and t1.group_code =t2.group_code
and t2.group_code = '120'
inner join port as pt
on t1.port_code = pt.port_code
where t1.kind_code = '110'
and t1.group_code = '120'
and 差分>0
order by  差分 desc,t1.port_code desc;
提出情報
提出日時2024/03/27 20:26:04
コンテスト第1回 SQLコンテスト
問題港入出国者分析
受験者sakichiii
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量89 MB
メッセージ
テストケース(通過数/総数)
2/2
状態
メモリ使用量
データパターン1
AC
89 MB
データパターン2
AC
83 MB