通过添加来修改表字段
我有 Table1,我想在其中修改 previous_sum,其中 previous_sum 是表 2 中截至该特定日期的数字字段的总和。示例:
Table1
Date___|___previous_sum
01/01__|___20
01/02__|___50
01/03__|___100
Table2
Date___|___numbers
01/01__|___20
01/02__|___30
01/03__|___50
因此,previous_sum 一开始是 0,但根据截至该日期的数字字段中的内容,我希望它相应地添加到 previous_sum。
I have Table1, where I want to modify previous_sum where previous_sum is the sum of the numbers field in Table 2 up to that specific date. Example:
Table1
Date___|___previous_sum
01/01__|___20
01/02__|___50
01/03__|___100
Table2
Date___|___numbers
01/01__|___20
01/02__|___30
01/03__|___50
So, previous_sum is 0 in the beginning but depending on what is in the numbers field up to that date, I want it to add correspondingly to previous_sum.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我不太清楚你在问什么,但我想你的意思是这样的?
PS如果您需要求和,只需添加一个分组并对数字求和
I'm not quite sure what you're asking, but I think you mean something like this?
P.S. if you need a SUM just add a group by and SUM the numbers