gpt4 book ai didi

使用 update 语句的 php 和 mysql 语法问题

转载 作者:行者123 更新时间:2023-11-29 07:38:43 25 4
gpt4 key购买 nike

我正在尝试找出查询中的语法问题代码块如下所示:

$updatequery = "update patient_dim set dentist_id = $dentist_id where".
"patient_id = $patient_id";
$queryResult = mysql_query($updatequery,$con);

if(!$queryResul){
trigger_error("insert error" . mysql_error());
}

mysql_close($con);

然后错误是这样的:
注意:插入错误您的 SQL 语法有错误;检查与您的 MySQL 服务器版本相对应的手册,了解在 '\"1"where Patient_id = 4' 附近使用的正确语法

我怀疑 $updatequery 语句中的语法不正确

有关 $patent_id = 1 的值和 $dentist_id = 4 的值的更多信息,我已尝试了您的所有方法,但仍然出现相同的错误。不管怎样,谢谢你的帮助

最佳答案

您的查询在 where 之后需要空格

$updatequery = "update patient_dim set dentist_id = $dentist_id where patient_id = $patient_id";

关于使用 update 语句的 php 和 mysql 语法问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29792244/

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