如何汇总一个表中的行(基于选定的标准)并将结果移动到另一个表。
我有一个与项目内成本相关的表格:
表“成本”:
id| CostName |ID_CostCategory| PlanValue|DoneValue
-------------------------------------------------------
1 | books |1 |100 |120
2 | flowers |1 |90 |90
3 | car |2 |150 |130
4 | gas |2 |50 |45
我想将每个 ID_CostCategory 的“DoneValue”之和放入表“CostCategories”中
表“成本类别”:
id|name |planned|done
------------------------
1 |other|190 |takes the sum from above table
2 |car |200 |takes the sum from above table
非常感谢