gpt4 book ai didi

mysql - 在mysql中插入数据和求和

转载 作者:行者123 更新时间:2023-11-29 18:00:42 25 4
gpt4 key购买 nike

可能主题不准确

但是我有一个问题,如何将数据插入表中并计算它们。

我有一张 table

no   date         product_code   first_stok   in   out  final_stock
1 2018/01/18 A001 50 0 0 50
2 2018/01/18 A001 0 0 35 15 <==== i want to achieve this

当我插入新数据(数据编号 2)并用 35 填充“out”列时,“final_stock”列将有 15。我怎样才能实现这一点

这是我的查询

mysql_query("insert into flow_stock (date, product_code, first_stok, in, out, final_stock )
values('$date', '$code','','','$out','')");
mysql_query("update flow_stock set final_stok = final_stok-'$out'
where product_code ='$code'");

需要你的帮助

最佳答案

你可以这样做:

mysql_query("insert into flow_stock (date, product_code, first_stok, in, out, final_stock )
values('$date', '$code','','','$out',(select final_stock from flow_stock order by no desc limit 1) - ".$out.")");

关于mysql - 在mysql中插入数据和求和,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48377411/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com