每分钟MySQL函数更新行

时间:2017-03-26 20:37:15

标签: mysql database mysqli

我想像这样更新我的所有行:

enter image description here

对于每一行: 新金额=当前金额+速度

我的第一个想法是使用PHP,但我认为mysql函数更容易,性能也更好。

1 个答案:

答案 0 :(得分:1)

简单的单一更新就足够了。

year = 1;//reset year before 2nd while
while ( year <= useful_Life ) {
   //add your code
}

但是,在没有update your_table set amount = amount + speed; 子句的情况下更新通常是一个危险的想法。确保这是您想要的或应用合适的where子句。