gpt4 book ai didi

mysql - 简单的插入查询不起作用

转载 作者:行者123 更新时间:2023-11-29 01:49:18 25 4
gpt4 key购买 nike

我的查询:

INSERT INTO media (id,name,path,module,page,created)
VALUES ('1','slider1.jpg','user\img\slider\','user','home','1534933852')

错误静态分析:

在分析过程中发现了 1 个错误。

Ending quote ' was expected. (near "" at position 125)

MySQL 说:文档

#1064 - You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'user','home','1534933852')' at line 1

最佳答案

我认为问题出在反斜杠上。这些是 MySQL 中的转义字符。所以你可以把它们加倍:

INSERT INTO media (id,name,path,module,page,created)
VALUES ('1', 'slider1.jpg', 'user\\img\\slider\\', 'user', 'home', '1534933852');

如果您从应用程序传递值,则使用参数,您将不会遇到此问题。

关于mysql - 简单的插入查询不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51965378/

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