52ll.org
52ll.org

使用命令导入Mysql数据

方法一

登陆

mysql -uroot -p

输入数据库密码

Enter password:

选择数据库,假设数据库是abc

use abc;

导入数据,假设数据文件在/home/abc/abc.sql

source /home/abc/abc.sql;

方法二

假设用户root,密码root,需导入数据库名称为abc,需导入数据库文件名称为abc.sql,路径为/home/abc/abc.sql,则

mysql -uroot -proot abc < /home/abc/abc.sql

发表回复

textsms
account_circle
email

52ll.org

使用命令导入Mysql数据
方法一 登陆 mysql -uroot -p 输入数据库密码 Enter password: 选择数据库,假设数据库是abc use abc; 导入数据,假设数据文件在/home/abc/abc.sql source /home/abc/abc.sql; …
扫描二维码继续阅读
2018-05-25