本文介紹了在 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 中創建累積總和列的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網!
【網站聲明】本站部分內容來源于互聯網,旨在幫助大家更快的解決問題,如果有圖片或者內容侵犯了您的權益,請聯系我們刪除處理,感謝您的支持!