标签:数据 导入 show 使用 启动 esc source 数据库密码 批量导入
net start mysql
mysql -uroot -p
show databases;
create database test charset=utf8; #切记:指定编码
use test;
set password=‘root‘
show tables;
desc test_tables;
source E:/pro_sql/test.sql;
(注意其表名要和test里的表名对应)标签:数据 导入 show 使用 启动 esc source 数据库密码 批量导入
原文地址:https://www.cnblogs.com/chenxi188/p/12207323.html