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

mysql 导入导出数据库、数据表的方法_MySQL

WBOY
WBOYOriginal
2016-06-01 13:27:151410browse

bitsCN.com

mysql 导入导出数据库、数据表的方法。

Linux操作系统中,均在控制台下操作。
1,导入数据库:
前提:数据库和数据表要存在(已经被创建)
(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

2,导出数据库:
(1) 将数据库 test 导出到/www/web/test/test.sql
[root@test ~]# mysqldump -uroot -p test > /www/web/test/test.sql
回车后提示输入密码 # www.jbxue.com
(2) 将数据库 test 中的 user 数据表 导出到 /www/web/test/user.sql
[root@test ~]# mysqldump -uroot -p test user bitsCN.com

Statement:
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