求问mysql5.5如何导出兼容mysql5.1的版本

2024-12-12 13:01:43
推荐回答(1个)
回答1:

我只是在 5.5 上面导出一个 基本的 sql 语句。
然后再执行这个 SQL 语句。

不过没有测试过, 5.5 导出的 sql 语句, 能不能在 5.1 上面执行通过了。
你可以尝试一下看看。

进入MySQL目录下的bin文件夹

mysqldump -u 用户名 -p 数据库名 > 导出的文件名

C:\Program Files\MySQL\MySQL Server 5.5\bin>mysqldump -u root -p Test > test.sql

Enter password: ********

C:\Program Files\MySQL\MySQL Server 5.5\bin>dir *.sql
驱动器 C 中的卷没有标签。
卷的序列号是 406A-C32E

C:\Program Files\MySQL\MySQL Server 5.5\bin 的目录

2013-01-29 16:34 39,574 test.sql
1 个文件 39,574 字节
0 个目录 5,498,294,272 可用字节

导入

C:\Program Files\MySQL\MySQL Server 5.5\bin>mysql -u root -p
Enter password: ********
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 17
Server version: 5.5.29 MySQL Community Server (GPL)

Copyright (c) 2000, 2012, Oracle and/or its affiliates. All rights reserved.

Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

mysql> create database test2;
Query OK, 1 row affected (0.04 sec)

mysql> use test2
Database changed
mysql> source test.sql

......