gpt4 book ai didi

mysql - 无法找到的 MySQL 错误

转载 作者:行者123 更新时间:2023-12-01 00:54:44 25 4
gpt4 key购买 nike

我正在编写一些 PHP 代码以将一个值插入到我的 MySQL 数据库中:

INSERT INTO users_validate (uid, key) VALUES ('11', '4866ce5568850eb5f8daad79a8822d26')

谁能告诉我这是怎么回事?

编辑:错误信息是

You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'key) VALUES ('11', '4866ce5568850eb5f8daad79a8822d26')' at line 1

最佳答案

尝试转义您的列名 key:

INSERT INTO users_validate (uid, `key`) VALUES ('11', '4866ce5568850eb5f8daad79a8822d26')

KEY 是 MySQL 中的保留字:http://dev.mysql.com/doc/refman/5.0/en/reserved-words.html

关于mysql - 无法找到的 MySQL 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12130283/

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