如何将带单引号的文件名从 excel 插入到 mysql 中?

发布于 2025-01-07 14:20:30 字数 194 浏览 1 评论 0原文

如何将带单引号的文件名从 excel 插入到 mysql?
如果我不加引号地输入名称,如下所示:

安迪

它的工作,但如果我把名字不带引号('),像这样:

还有我

它不起作用。 请帮忙:(

What can i do to insert file name with a single quotes from excel to mysql?
if I put the name without quotation, like this:

Andi

its working out, but if I put the name without quotation ( ' ), like this:

And'i

it didnt work.
Please Help :(

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

贪恋 2025-01-14 14:20:30

您需要使用 \ (反斜杠) 字符转义引号字符。

请参阅此处: http://dev.mysql.com/doc/ refman/5.0/en/string-literals.html

也适用于 php: http://php.net/manual/en/function.mysql-real-escape-string.php

you need to escape quotation character with a \ (backslash) character.

see here: http://dev.mysql.com/doc/refman/5.0/en/string-literals.html

also here for php: http://php.net/manual/en/function.mysql-real-escape-string.php

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文