Home > Database > Mysql Tutorial > mysql 导入导出数据库、数据表_MySQL

mysql 导入导出数据库、数据表_MySQL

WBOY
Release: 2016-06-01 13:27:16
Original
1344 people have browsed it

bitsCN.com

Linux下

均在控制台下操作。

导入数据库:

前提:数据库和数据表要存在(已经被创建)

(1)将数据表 test_user.sql 导入到test 数据库的test_user 表中

[root@test ~]# mysql -uroot -p test

(2) 将数据库 test.sql 导入到 test 数据库test 中

[root@test ~]# mysql -uroot -p test

(3)source命令不在控制台下,要进入mysql下操作

mysql> use test;

mysql>source /www/web/test/test.sql

 

导出数据库:

(1) 将数据库 test 导出到/www/web/test/test.sql

[root@test ~]# mysqldump -uroot -p test > /www/web/test/test.sql

回车后提示输入密码

(2) 将数据库 test 中的 user 数据表 导出到 /www/web/test/user.sql

[root@test ~]# mysqldump -uroot -p test user bitsCN.com

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template