我有下表。
Id Amount Balance total
1 10 15 A
2 10 12 A
3 4 11 A
4 10 6 A
我需要的是,计算总计并更新同一表中的值(替换A)。这是我想要的结果...
Id Amount Balance total
1 10 15 25
2 10 12 22
3 4 11 15
4 10 6 16
如何在mysql查询中实现?
答案 0 :(得分:1)
update table set total = Amount + Balance;