How to solve the using btree error prompt when importing data from mysql

Source: Internet
Author: User


The recent use of MySQL to import SQL script time error:


You have a error in your SQL syntax; Check the manual that corresponds to your MySQL server version for the right syntax to use near ' USING btree
) Engine=innodb DEFAULT Charset=utf8;

Looking for a using btree MySQL, you will see many such examples, MySQL 5.14 version did not recognize the using Btree. There are three solutions:

1, directly remove USING btree
2. Turn on compatibility when exporting scripts mysqldump–compatible=mysql40
3, key ' ename ' (' slug ') using btree, modified to key ' ename ' using btree (' slug '), that is, put the using btree in front of the index field.

Example

Open the file you want to import search Btree find the following

UNIQUE KEY ' user_name ' (' suppliers_name ') USING btree, modified to

The UNIQUE KEY ' user_name ' USING btree (' Suppliers_name '),

The using Btree is placed in front of the index field.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.