コンテストの制限時間が終了しました。
以降も提出を行うことができますが、順位集計には反映されません。
以降も提出を行うことができますが、順位集計には反映されません。
ソースコード
with immigrations as (
select
P.port_code,
sum(case when I.kind_code = '110' then I.amt else 0 end) as in_count,
sum(case when I.kind_code = '120' then I.amt else 0 end) as out_count
from
port P
inner join immigration I
on P.port_code = I.port_code
where
I.group_code = '120'
group by
P.port_code
)
select
P.port_code as 港コード,
P.port_name as 港名,
I.in_count as 入国者数,
I.out_count as 出国者数,
I.in_count - I.out_count as 差分
from
immigrations I
inner join port P
on I.port_code = P.port_code
where
I.in_count > I.out_count
order by
I.in_count - I.out_count desc, P.port_code desc
;
提出情報
提出日時 | 2022/07/20 19:40:31 |
コンテスト | 第1回 SQLコンテスト |
問題 | 港入出国者分析 |
受験者 | tekihei2317 |
状態 (詳細) | AC (Accepted: 正答) |
メモリ使用量 | 101 MB |
メッセージ
テストケース(通過数/総数)
2/2
状態
メモリ使用量
データパターン1
AC
100 MB
データパターン2
AC
101 MB