ソースコード
with ORD as (
select SESSION_ID, 
--PROCESS_ID
group_concat(replace(PROCESS_ID,"STEP",""),"") as ord
from PROCESS_LOG 
group by 1),
tmp as(
select 
count(1) as CNT,
case
when ord = "12345" then "5"
when ord = "1234" then "4"
when ord = "123" then "3"
when ord = "12" then "2"
when ord = "1" then "1"
else "0"
end as steps
from ORD
group by steps
order by steps
)
select "STEP"||steps as PROCESS, CNT from tmp where steps !="0"
提出情報
提出日時2024/06/15 11:30:23
コンテスト第10回 SQLコンテスト
問題顧客行動分析
受験者nagisa5101
状態 (詳細)WA
(Wrong Answer: 誤答)
メモリ使用量85 MB
メッセージ
テストケース(通過数/総数)
0/4
状態
メモリ使用量
データパターン1
WA
83 MB
データパターン2
WA
83 MB
データパターン3
WA
85 MB
データパターン4
WA
84 MB