Create a Cumulative Sum Column in MySQL(在 MySQL 中创建累积总和列)
问题描述
我有一张看起来像这样的表格:
I have a table that looks like this:
id count
1 100
2 50
3 10
我想添加一个名为cumulative_sum的新列,因此该表将如下所示:
I want to add a new column called cumulative_sum, so the table would look like this:
id count cumulative_sum
1 100 100
2 50 150
3 10 160
是否有可以轻松完成此操作的 MySQL 更新语句?实现这一目标的最佳方法是什么?
Is there a MySQL update statement that can do this easily? What's the best way to accomplish this?
推荐答案
如果性能有问题,您可以使用 MySQL 变量:
If performance is an issue, you could use a MySQL variable:
set @csum := 0;
update YourTable
set cumulative_sum = (@csum := @csum + count)
order by id;
或者,您可以删除 cumulative_sum 列并在每个查询中计算它:
Alternatively, you could remove the cumulative_sum column and calculate it on each query:
set @csum := 0;
select id, count, (@csum := @csum + count) as cumulative_sum
from YourTable
order by id;
这以运行方式计算运行总和:)
This calculates the running sum in a running way :)
这篇关于在 MySQL 中创建累积总和列的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在 MySQL 中创建累积总和列
基础教程推荐
- while 在触发器内循环以遍历 sql 中表的所有列 2022-01-01
- 带有WHERE子句的LAG()函数 2022-01-01
- MySQL 5.7参照时间戳生成日期列 2022-01-01
- 带更新的 sqlite CTE 2022-01-01
- 从字符串 TSQL 中获取数字 2021-01-01
- 如何在 CakePHP 3 中实现 INSERT ON DUPLICATE KEY UPDATE aka upsert? 2021-01-01
- 使用 VBS 和注册表来确定安装了哪个版本和 32 位 2021-01-01
- MySQL根据从其他列分组的值,对两列之间的值进行求和 2022-01-01
- ORA-01830:日期格式图片在转换整个输入字符串之前结束/选择日期查询的总和 2021-01-01
- CHECKSUM 和 CHECKSUM_AGG:算法是什么? 2021-01-01
