使用MySQL命令行客戶端來裝載數(shù)據(jù)庫。
1、連接MySql
2、創(chuàng)建“bjpowernode”數(shù)據(jù)庫
mysql> create database bjpowernode;
3、選擇數(shù)據(jù)庫
mysql> use bjpowernode
4、導(dǎo)入數(shù)據(jù)
mysql>source D:\ bjpowernode.sql
5、刪除數(shù)據(jù)庫(這里不要做!)
mysql> drop database bjpowernode;