微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

首月客户金额

如何解决首月客户金额

teradta-sql 我只需要向第一个月的客户显示(new_col)所有月份的金额

拥有:

date        cust sum
2020-04-01  1    100
2020-04-01  2    100
2020-05-01  1    100
2020-05-01  3    100
2020-06-01  4    100
2020-06-01  2    100

需要:

date        cust sum  new_col
2020-04-01  1    100  100
2020-04-01  2    110  110
2020-05-01  1    120  120
2020-05-01  3    100  null
2020-06-01  4    100  null
2020-06-01  2    140  140

解决方法

似乎您需要一个 Group Min

假设日期始终是每月的1号:

case
  when min(date) over (partition by cust) -- min date for customer
     = min(date) over ()                  -- min date overall
  then sum
end

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。