MySQL 导入错误:未知的标点符号字符串

发布于 2024-11-05 06:23:33 字数 533 浏览 0 评论 0原文

尝试使用 phpMyAdmin 导入 MySQL 数据库时出现以下错误。我不确定转储是如何创建的:

您的 SQL 查询中似乎存在错误。下面的 MySQL 服务器错误输出(如果有)也可以帮助您诊断问题

ERROR: Unknown Punctuation String @ 108
STR: |//**
SQL: -- Database lach

    -- Table structure for table jos_acajoom_lists

|------
|Field|Type|Null|Default
|------
|//**id**//|int(10)|Yes|NULL
|**list_name**|varchar(101)|Yes|
|list_desc|text|Yes|NULL
|list_type|tinyint(2)|Yes|0
|sendername|varchar(64)|Yes|
|senderemail|varchar(64)|Yes|
|bounceadres|varchar(64)|Yes|
|layout|text|Yes|NULL

I get the following error when trying to import a MySQL database with phpMyAdmin. I am not sure how the dump was created:

There seems to be an error in your SQL query. The MySQL server error output below, if there is any, may also help you in diagnosing the problem

ERROR: Unknown Punctuation String @ 108
STR: |//**
SQL: -- Database lach

    -- Table structure for table jos_acajoom_lists

|------
|Field|Type|Null|Default
|------
|//**id**//|int(10)|Yes|NULL
|**list_name**|varchar(101)|Yes|
|list_desc|text|Yes|NULL
|list_type|tinyint(2)|Yes|0
|sendername|varchar(64)|Yes|
|senderemail|varchar(64)|Yes|
|bounceadres|varchar(64)|Yes|
|layout|text|Yes|NULL

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

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

发布评论

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

评论(1

┾廆蒐ゝ 2024-11-12 06:23:33

看起来您可能正在尝试使用“//”来注释导入中的一行。您需要将其替换为“--”,因为 MySQL 不支持 C++ 风格的注释。

It looks like you might be trying to use a "//" to comment out a line in the import. You will need to replace that with "-- ", as MySQL does not support the C++ style comments.

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