mysql导入导出

来源:互联网 发布:旅行社办公软件 编辑:程序博客网 时间:2024/05/02 01:16

(1)导入

建立hi.sql文件:
create table hi(name char(10),id char(4));
用root用户登陆数据库:
E:/mysql/bin>mysql -u root -p123
Welcome to the MySQL monitor.  Commands end with ; or /g.
Your MySQL connection id is 26
Server version: 5.0.37-community-nt MySQL Community Edition (GPL)
Type 'help;' or '/h' for help. Type '/c' to clear the buffer.
更改数据库:
mysql> use mysql;
Database changed
运行该脚本文件:
mysql> source hi.sql
Query OK, 0 rows affected (0.08 sec)
查看hi表的结构:
mysql> desc hi;

+-------+----------+------+-----+---------+-------+
| Field | Type     | Null | Key | Default | Extra |
+-------+----------+------+-----+---------+-------+
| name  | char(10) | YES  |     | NULL    |       |
| id    | char(4)  | YES  |     | NULL    |       |
+-------+----------+------+-----+---------+-------+
2 rows in set (0.02 sec)

 

 

 

(2)导出
mysqldump -u用户名 -p数据库名 > 存放位置
mysqljump -uroot -p test > c:a.sql

mysqldump -uroot -p test > c:a.sql
mysqldump -uroot -p test > c:a.sql

原创粉丝点击