Yan.G WebServer Dev Engineer

mysql 数据库

2018-01-22

导入数据库

create database testdb;

use testdb;
source < ~/test_db.sql

## 直接使用mysql 方式导入
mysql -uroot -p testdb < testdb.sql

导出数据库

mysqldump -u root -p testdb > testdb.sql
  • 导出一个表
    mysqldump -u root -p testdb users> users.sql
    
  • 导出数据结构
    mysqldump -u root -p -d --add-drop-table testdb > ~/testdb.sql
    -d 没有数据 --add-drop-table 在每个create语句之前增加一个drop table
    

Similar Posts

上一篇 mysql 创建用户

下一篇 mysql 安装

Content