日期:2014-05-16  浏览次数:20659 次

mysql 1064 USING BTREE 问题
从服务器上通过mysqldump命令导出文件

在导入到另外的库时,提示:

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 'USING BTREE,
  KEY `authorid` (`authorid`) USING BTREE,
  KEY `dateline` (`datel' at line 24



经查找是mysql版本的问题,导入的库是 server version: 5.0.18,导出的库5.1.45.

打开导出的mysql文件,找到类似
   KEY `authorid` (`authorid`) USING BTREE,
修改成
   KEY `authorid`USING BTREE(`authorid`)

重新导入,问题解决。