码迷,mamicode.com
首页 > 数据库 > 详细

server version for the right syntax to use near 'USING BTREE 数据库文件版本不合导致的错误

时间:2014-09-22 18:28:22      阅读:255      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   io   ar   for   文件   数据   div   

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 `lang` (`language_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8‘ at line 5
 
解决办法是打开要导入的文件在里面搜索 BTREE 找到如下内容:
PRIMARY KEY (`search`) USING BTREE,
修改为
PRIMARY KEY (`search`) USING BTREE (`search`),
或者直接删除USING BTREE
原因是mysql数据库文件版本不合。

server version for the right syntax to use near 'USING BTREE 数据库文件版本不合导致的错误

标签:style   blog   color   io   ar   for   文件   数据   div   

原文地址:http://www.cnblogs.com/afish/p/3986205.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!