Teradata SQL - 行中的最小最大事务日期

Teradata SQL -Min Max transaction dates from Rows

尝试了 Qualify row_Number () 和 Qualify Min & Max 功能,但仍然无法获得交易的日期范围。见下面的数据结构

需要以下输出的帮助

提前致谢

您需要先找到连续日期的分组。有几种方法可以做到这一点,在你的情况下,最好的方法是将一个序列与另一个序列进行比较,其中有间隙:

with cte as
 (
   select t.*
      -- consecutive numbers = sequence without gaps
     ,row_number()
      over (partition by location, cust#, cust_type -- ??
            order by transaction_date) as rn
      -- consecutive numbers as long as there's no missing date = sequence with gaps
     ,(transaction_date - date '0001-01-01') as rn2

      -- assign a common (but meaningless) value to consecutive dates,
      -- value changes when there's a gap
     ,rn2 - rn as grp
   from tab as t
 )
select location, cust#, cust_type -- ??
  ,min(transaction_date), max(transaction_date)
  ,min(amount), max(amount)
from cte
 -- add the calculated "grp" to GROUP BY 
group by location, cust#, cust_type, grp

用于 PARTITION BY/GROUP BY 的列取决于您的规则。