PHP-> PDO更新声明
我试图执行 SQL 查询( insert into users set cash = cash + 20
), 谁能帮我处理上述查询的 PDO 准备语句版本?
I was trying to do a SQL query ( insert into users set cash = cash + 20
),
can anyone help me with the PDO prepared statement version of the above query?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我真的不知道你是要插入还是更新。以下是 PDO 准备好的语句示例。他们假设您已经连接并且 PDO 对象是
$dbh
。插入:
更新:
I can't really figure out if you're looking to insert or update. Here are PDO prepared statement examples. They assume that you've already connected and that the PDO object is
$dbh
.Insert:
Update:
您正在尝试进行更新,而不是插入
You are trying to do an update, not an insert