gpt4 book ai didi

PHP MySQL 选择字段并增加值

转载 作者:行者123 更新时间:2023-12-01 00:04:02 25 4
gpt4 key购买 nike

我想获取指定字段的值(它是 INT),然后递增该值,然后在 mysql 中更新它。我试过了,但没用。我对 MySQL 完全陌生。

            $attempts = mysql_fetch_array(mysql_query("SELECT attempts FROM employees WHERE lastname='$lastname'"));
mysql_query("UPDATE employees SET attetmps='$attemtps++' WHERE lastname='$lastname'");

最佳答案

我建议: mysql_query("UPDATE employees SET attempts = attempts + 1 WHERE lastname = '".$lastname."'");

关于PHP MySQL 选择字段并增加值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29200010/

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