MySQL 导入错误:未知的标点符号字符串
尝试使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看起来您可能正在尝试使用“//”来注释导入中的一行。您需要将其替换为“--”,因为 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.