使用 where 子句更新 MySQL
我正在尝试更新 username = $username 的字段
UPDATE userinfo SET password = $newpass WHERE username = $username
但是,当我将 $username
替换为 <代码>鲍勃。
知道如何正确写这个吗?
I'm trying to update a field where username = $username
UPDATE userinfo SET password = $newpass WHERE username = $username
However, I'm getting the error "#1054 - Unknown column 'bob' in 'where clause'" when I replace $username
with bob
.
Any idea how to correctly write this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
啊哈!在您的评论之后,很明显您没有将文本括在引号中:
由于
$username
是文本值,因此您需要在其周围放置单引号,以便 SQL 将其解析为文本,而不是解析为柱子。Aha! After your comment, it's clear that you're not wrapping text in quotes:
Since
$username
is a text value, you need to put single quotes around it so that SQL parses it as text, not as a column.