आप "नकद" लेनदेन की गणना करने के लिए एक चाल का उपयोग कर सकते हैं। यह ट्रिक पंक्ति संख्याओं का अंतर है और यह बहुत उपयोगी है:
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;
यह ग्राहकों और प्रारंभ तिथि लौटाता है। यदि आप वास्तविक लेन-देन वापस करना चाहते हैं, तो आप विंडो फ़ंक्शंस के अतिरिक्त स्तर का उपयोग कर सकते हैं:
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;