mysql的數(shù)據(jù)庫在哪里,mysql57怎么加入數(shù)據(jù)庫?
1、導(dǎo)出數(shù)據(jù)庫
mysqldump --default-character-set=utf8 -u root -p _auth>/app/fileName.sql
2、導(dǎo)入數(shù)據(jù)庫
登錄數(shù)據(jù)庫
use databaseName;
set names utf8;
source /app/fileName.sql;
以上是用命令行導(dǎo)出數(shù)據(jù)庫和導(dǎo)入數(shù)據(jù)庫,還可以用工具導(dǎo)出及導(dǎo)入,工具很多這里就不說了。