ソースコード
with tmp as(select 
*,
row_number() over (partition by sessioN_id order by ex_timestamp) rn
from process_log)
,
tmp2 as
(select *,count() over (partition by session_id) cnt


from tmp
where tmp.rn= cast(substr(tmp.process_id,5,1) as integer)
), tmp3 as(
select *, max(rn) over (partition by session_id) mm

from tmp2
where rn<=cnt
)
select process_id,count(session_id) cnt
from tmp3

group by process_id
order by 1
提出情報
提出日時2023/12/18 00:14:36
コンテスト第10回 SQLコンテスト
問題顧客行動分析
受験者noneof383
状態 (詳細)WA
(Wrong Answer: 誤答)
メモリ使用量89 MB
メッセージ
テストケース(通過数/総数)
0/4
状態
メモリ使用量
データパターン1
WA
84 MB
データパターン2
WA
86 MB
データパターン3
WA
89 MB
データパターン4
WA
84 MB