Pro výčet „hotovostních“ transakcí můžete použít trik. Tento trik spočívá v rozdílu čísel řádků a je velmi užitečný:
select t.*
from (select t.*, count(*) over (partition by grp, customerid, transtype) as cnt
from (select t.*,
(row_number() over (partition by customerid order by date) -
row_number() over (partition by customerid, transtype order by date)
) as grp
from t
) t
where transtype = 'cash'
) t
where cnt >= 3;
Tím se vrátí zákazníci a datum zahájení. Pokud chcete vrátit skutečné transakce, můžete použít další úroveň funkcí okna:
select customerid, min(date) as start_date, sum(value) as sumvalue
from (select t.*,
(row_number() over (partition by customerid order by date) -
row_number() over (partition by customerid, transtype order by date)
) as grp
from t
) t
where transtype = 'cash'
group by grp, transtype, customerid
having count(*) >= 3;