过去 4 天内有多少个 1?

发布于 2025-01-19 01:39:35 字数 220 浏览 0 评论 0原文

输入图片此处描述

我想对 Informatica Developer 中的每个名称(A、B、C、D)在过去四天(1/1 到 1/4)内计算或求和有多少个 1。请指教!!

enter image description here

I would like to count or sum how many 1's in last four days (1/1 to 1/4) for each name (A, B, C, D) in Informatica Developer. Advise please!!

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

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

发布评论

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

评论(1

被你宠の有点坏 2025-01-26 01:39:35

只需创建一个EXP转换和一个新的输出端口即可。公式应该像这样 -

o_how_many_1s= day1 + day2+day3+day4

现在,您说的所有时间*值*值可以被删除0或1,因此添加它们将为您提供1秒的数量。

如果您在这些字段中有零,则可以使用iif(isnull(day1),0,Day1)逻辑时。
如果您有其他数字以外的0,1,那么,您需要使用类似的特定内容

o_how_many_1s= IIF(day1=1,1,0) + IIF(day2=1,1,0)+IIF(day3=1,1,0)+IIF(day4=1,1,0)

simply create an exp transformation and a new output port. Formula should be like this-

o_how_many_1s= day1 + day2+day3+day4

Now, you said, all the day* values can be wither 0 or 1, so adding them will give you count of 1s.

If you have null in these fields, then you can use IIF(isnull(day1),0,day1) logic while adding.
If you have some numbers other than 0,1, then, then you need to use something specific like this

o_how_many_1s= IIF(day1=1,1,0) + IIF(day2=1,1,0)+IIF(day3=1,1,0)+IIF(day4=1,1,0)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文