在 MySQL UPDATE 中使用变量 (PHP/MySQL)

发布于 2024-11-03 21:00:05 字数 247 浏览 2 评论 0原文

我使用这段代码是为了更新数据库中的记录:

$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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

笑咖 2024-11-10 21:00:05

$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);

哆啦不做梦 2024-11-10 21:00:05

你搞砸了你的 " . 模式。

$query = mysql_query("UPDATE article set com_count = ". $comments_count . " WHERE article_id = " . $art_id . ");

You messed up on your " . pattern.

$query = mysql_query("UPDATE article set com_count = ". $comments_count . " WHERE article_id = " . $art_id . ");
任性一次 2024-11-10 21:00:05

在 MySQL UPDATE 语句中使用变量时使用撇号:

$query = mysql_query("UPDATE article 
                      SET com_count =  '$comments_count'
                      WHERE article_id = '$art_id'");

请注意空格和撇号。

Use apostrophes when using variables in a MySQL UPDATE statement:

$query = mysql_query("UPDATE article 
                      SET com_count =  '$comments_count'
                      WHERE article_id = '$art_id'");

Be careful about space and apostrophes.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文