gpt4 book ai didi

mysql - MySQL语法错误

转载 作者:太空宇宙 更新时间:2023-11-03 11:03:34 27 4
gpt4 key购买 nike

我正在尝试自学 MySQL,同时从事一个项目。我正在使用 phpMyAdmin。

我收到错误:“#1064 - 您的 SQL 语法有错误;请查看与您的 MySQL 服务器版本对应的手册,了解在 ''ps_category' ('id_category', '第 1 行的 id_parent'、'id_shop_default'、'level_depth'、'nl'”

我的代码:

INSERT INTO 'ps_category' 
('id_category', 'id_parent', 'id_shop_default',
'level_depth', 'nleft', 'nright', 'active',
'date_add', 'date_upd', 'position', 'is_root_category')
VALUES (6,2,1,0,0,0,1,'2012-04-12 15:12:54','2012-04-12 15:12:54',1,0)

更新:

我去掉了单引号,但仍然出现同样的错误:

 INSERT INTO ps_category 
('id_category', 'id_parent', 'id_shop_default',
'level_depth', 'nleft', 'nright', 'active',
'date_add', 'date_upd', 'position', 'is_root_category')
VALUES (6,2,1,0,0,0,1,'2012-04-12 15:12:54','2012-04-12 15:12:54',1,0)

最佳答案

INSERT INTO `ps_category` (`id_category`, `id_parent`, `id_shop_default`, `level_depth`, `nleft`, `nright`, `active`, `date_add`, `date_upd`, `position`, `is_root_category`) VALUES (6,2,1,0,0,0,1,'2012-04-12 15:12:54','2012-04-12 15:12:54',1,0)

您在表名上使用了单引号。它应该是滴答声或什么都不是。应该注意,刻度线有助于确保正确读取表名。如果您将表命名为 mysql reserved word , 刻度会防止它出错

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

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