コンテストの制限時間が終了しました。
以降も提出を行うことができますが、順位集計には反映されません。
以降も提出を行うことができますが、順位集計には反映されません。
ソースコード
with org as (
select
a.port_code
, case when a.kind_code=110 then a.amt else 0 end as _1
, case when a.kind_code=120 then a.amt else 0 end as _2
from IMMIGRATION as a
-- inner join grp as b
-- on a.group_code = b.group_code
where (a.group_code = 120 and a.kind_code = 110)
or (a.kind_code = 120)
--and (a.kind_code = 110 or a.kind_code = 120)
)
select
a.port_code as '港コード'
, b.port_name as '港名'
, sum(a._1) '入国者数'
, sum(a._2) '出国者数'
, sum(a._1) - sum(a._2) as '差分'
from org as a
inner join port as b
on a.port_code = b.port_code
group by a.port_code
order by 5 desc, 1 desc
;
提出情報
提出日時 | 2023/03/02 23:45:55 |
コンテスト | 第1回 SQLコンテスト |
問題 | 港入出国者分析 |
受験者 | s4wara_o |
状態 (詳細) | WA (Wrong Answer: 誤答) |
メモリ使用量 | 83 MB |
メッセージ
テストケース(通過数/総数)
0/2
状態
メモリ使用量
データパターン1
WA
80 MB
データパターン2
WA
83 MB