如何获取累积数据?我试图在SQL中获得以下水平,但没有得到期望的结果/Pyspark

发布于 2025-01-21 04:08:59 字数 748 浏览 0 评论 0原文

因此,<30 的铲斗值不会在 <60 等中显示。我怎样才能做到这一点

    case when DATEDIFF((to_date('2022-01-07', 'yyyy-MM-dd')),max(to_date((column), 'yyyy-MM-dd'))) between 0 and 29 then '<30' 
        when DATEDIFF((to_date('2022-01-07', 'yyyy-MM-dd')),max(to_date((column), 'yyyy-MM-dd'))) between 0 and 59 then '<60'
        when DATEDIFF((to_date('2022-01-07', 'yyyy-MM-dd')),max(to_date((column), 'yyyy-MM-dd'))) between 0 and 89 then '<90' 
        when DATEDIFF((to_date('2022-01-07', 'yyyy-MM-dd')),max(to_date((column), 'yyyy-MM-dd'))) between 0 and 179 then '<180' 
        when DATEDIFF((to_date('2022-01-07', 'yyyy-MM-dd')),max(to_date((column), 'yyyy-MM-dd'))) > 180 then '>180'
     end 
     else 'bad_date' 

So that <30 bucket vales are not being shown in <60 and so on. how can I achieve this

    case when DATEDIFF((to_date('2022-01-07', 'yyyy-MM-dd')),max(to_date((column), 'yyyy-MM-dd'))) between 0 and 29 then '<30' 
        when DATEDIFF((to_date('2022-01-07', 'yyyy-MM-dd')),max(to_date((column), 'yyyy-MM-dd'))) between 0 and 59 then '<60'
        when DATEDIFF((to_date('2022-01-07', 'yyyy-MM-dd')),max(to_date((column), 'yyyy-MM-dd'))) between 0 and 89 then '<90' 
        when DATEDIFF((to_date('2022-01-07', 'yyyy-MM-dd')),max(to_date((column), 'yyyy-MM-dd'))) between 0 and 179 then '<180' 
        when DATEDIFF((to_date('2022-01-07', 'yyyy-MM-dd')),max(to_date((column), 'yyyy-MM-dd'))) > 180 then '>180'
     end 
     else 'bad_date' 

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

独孤求败 2025-01-28 04:08:59

只需更改您的条件之间

... between 0 and 29 then '<30'
... between 30 and 59 then '<60'
... between 60 and 89 then '<90'
... between 90 and 179 then '<180'
... > 180 then '>180'

Just change your between conditions

... between 0 and 29 then '<30'
... between 30 and 59 then '<60'
... between 60 and 89 then '<90'
... between 90 and 179 then '<180'
... > 180 then '>180'
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文