数据库导入出现#1064错误,如何解决

错误

静态分析:

分析时发现2个错误。

 

  1. Unexpected beginning of statement. (near "EATE" at position 0)
  2. Unrecognized statement type. (near "TABLE" at position 5)

 

SQL 查询:

EATE TABLE `xingyi_love_blessing` ( `id` int(11) NOT NULL AUTO_INCREMENT, `ip` varchar(255) DEFAULT NULL COMMENT 'IP地址', `time` varchar(255) DEFAULT NULL COMMENT '祝福时间', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8

MySQL 返回: 文档

#1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'EATE TABLE `xingyi_love_blessing` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `i' at line 1

复制SQL命令没复制完?
应该是
CREATE TABLE 吧? 漏了 CR

img