在 MySQL UPDATE 中使用变量 (PHP/MySQL)
我使用这段代码是为了更新数据库中的记录:
$query = mysql_query("UPDATE article
SET com_count = ". $comments_count
WHERE article_id = .$art_id ");
我的问题是:如何在 MySQL UPDATE 语句中使用变量。
I am using this code so I can update a record in database:
$query = mysql_query("UPDATE article
SET com_count = ". $comments_count
WHERE article_id = .$art_id ");
My question is: How can I use variables in a MySQL UPDATE statement.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
$query = mysql_query("UPDATEarticle set com_count = $comments_count WHEREarticle_id = $art_id");
您搞乱了引号和连接。
您可以像前面的示例一样使用内联变量,也可以像这样连接它们:
$query = mysql_query("UPDATEarticle set com_count = " . $comments_count . " WHEREarticle_id = " . $art_id);
$query = mysql_query("UPDATE article set com_count = $comments_count WHERE article_id = $art_id");
You was messing up the quotes and concats.
You can use inline vars like the previous example or concat them like:
$query = mysql_query("UPDATE article set com_count = " . $comments_count . " WHERE article_id = " . $art_id);
你搞砸了你的
" .
模式。You messed up on your
" .
pattern.在 MySQL UPDATE 语句中使用变量时使用撇号:
请注意空格和撇号。
Use apostrophes when using variables in a MySQL UPDATE statement:
Be careful about space and apostrophes.