gpt4 book ai didi

MysQL 更新查询错误

转载 作者:行者123 更新时间:2023-11-30 22:03:10 24 4
gpt4 key购买 nike

我正在尝试在 phpMyAdmin 中运行以下 SQL 查询:

UPDATE registration SET key=1 sandr='aaa' where Username='qaz'

我也试过用逗号分隔两个字段:

UPDATE registration SET key=1, sandr='aaa' where Username='qaz'

表架构:

registration (table name)
------------------------------------------
key | sandr | Username (column names)
1 | 'aaa' | 'qaz' (valid details in the table

这是我的表格条目:

This is my table entries

这是我的表结构:

This is my table structure

环境:

  • 我的 PHP 版本是 5.3.5
  • Apache 版本为 2.2.17
  • MySQL版本为5.5.8

最佳答案

你的第二个例子是正确的。尝试像这样格式化它:

UPDATE `registration` SET `key` = 1, `sandr` = 'aaa' WHERE `Username` = 'qaz'

关于MysQL 更新查询错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42732396/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com