码迷,mamicode.com
首页 > 其他好文 > 详细

the right syntax to use near USING BTREE错误解决办法

时间:2015-07-31 01:33:54      阅读:191      评论:0      收藏:0      [点我收藏+]

标签:

在导入mysql数据的时候,如果遇到the right syntax to use near USING BTREE语法错误,不用惊慌

因为mysql新版本的USING BTREE语法与老版本有些不同(mysql5.14前后)

我们只需要将文件中的形如:

KEY `typeid` (`typeid`) USING BTREE

改为

KEY `typeid` USING BTREE(`typeid`)

就可以解决 USING BTREE错误错误了

the right syntax to use near USING BTREE错误解决办法

标签:

原文地址:http://my.oschina.net/bufenye/blog/485899

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