mysql php 变量赋值,在MySQL UPDATE(PHP / MySQL)中使用变量
生活随笔
收集整理的這篇文章主要介紹了
mysql php 变量赋值,在MySQL UPDATE(PHP / MySQL)中使用变量
小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.
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.
解決方案
$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);
總結(jié)
以上是生活随笔為你收集整理的mysql php 变量赋值,在MySQL UPDATE(PHP / MySQL)中使用变量的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: idea快捷操作_IDEA插件系列 快
- 下一篇: sqlserver连接字符串_【自学C#