コンテストの制限時間が終了しました。
以降も提出を行うことができますが、順位集計には反映されません。
以降も提出を行うことができますが、順位集計には反映されません。
ソースコード
select distinct
im.port_code as '港コード'
, pt.port_name as '港名'
, imin.in_amt as '入国者数'
, imout.out_amt as '出国者数'
, imin.in_amt - imout.out_amt as '差分'
from
immigration im
inner join
port pt
on im.port_code = pt.port_code
inner join
(select
it.port_code as port_code
, sum(it.amt) as in_amt
from
immigration it
where
it.kind_code = '110'
and it.group_code = '120'
group by
it.port_code
) imin
on
im.port_code = imin.port_code
inner join
(select
it.port_code as port_code
, sum(it.amt) as out_amt
from
immigration it
where
it.kind_code = '120'
and it.group_code = '120'
group by
it.port_code
) imout
on
im.port_code = imout.port_code
order by
imin.in_amt - imout.out_amt desc
, im.port_code desc
;
提出情報
提出日時 | 2022/07/20 21:25:26 |
コンテスト | 第1回 SQLコンテスト |
問題 | 港入出国者分析 |
受験者 | earlgrey_yh |
状態 (詳細) | WA (Wrong Answer: 誤答) |
メモリ使用量 | 102 MB |
メッセージ
テストケース(通過数/総数)
0/2
状態
メモリ使用量
データパターン1
WA
91 MB
データパターン2
WA
102 MB