如何更新添加列的当前值和新更新值的列
实施例..
如果countofcustomer列值为5 yester,今天如果v正在获取
的新更新值countofcustomer为2然后该列应更新为7。
答案 0 :(得分:1)
update table
set value = v.value
from table t join
(Select Sum(value),customer
from table
where month(ENDDATETIME) = month(getdate())
group by customer
)v
on v.customer = t.customer
答案 1 :(得分:0)
答案 2 :(得分:0)
请尝试:
update tbl set countofcustomer=countofcustomer + 2