Puoi usare un trucco per enumerare le transazioni "contanti". Questo trucco è una differenza di numeri di riga ed è molto utile:
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;
Questo restituisce i clienti e la data di inizio. Se desideri restituire le transazioni effettive, puoi utilizzare un livello aggiuntivo di funzioni della finestra:
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;