ソースコード
with nyukoku as (
select *
from IMMIGRATION im
left join GRP gr on gr.group_code = im.group_code
where gr.group_code = 120 and im.kind_code = 110 and amt is not null
),
ex as (
select *
from IMMIGRATION im
left join GRP gr2 on gr2.group_code = im.group_code
where gr2.group_code = 120 and im.kind_code = 120 and amt is not null
)
select im.PORT_CODE as 港コード
,PORT_NAME as 港名
,nk.amt as 入国者数
,ex.amt as 出国者数
,nk.amt - ex.amt as 差分
from IMMIGRATION im
inner join GRP gr3 on gr3.group_code = im.group_code
inner join port pt on im.port_code = pt.port_code
inner join nyukoku nk on nk.port_code = im.port_code
inner join ex on ex.port_code = im.port_code
where 0 = 0
and 差分 > 0
and im.kind_code = 120
order by 5 desc,1 desc
提出情報
提出日時2022/07/20 20:46:32
コンテスト第1回 SQLコンテスト
問題港入出国者分析
受験者tanappe
状態 (詳細)WA
(Wrong Answer: 誤答)
メモリ使用量97 MB
メッセージ
テストケース(通過数/総数)
1/2
状態
メモリ使用量
データパターン1
WA
97 MB
データパターン2
AC
95 MB