📌  相关文章
📜  导入数据库 mysql 命令行 - SQL 代码示例

📅  最后修改于: 2022-03-11 15:05:27.854000             🧑  作者: Mango

代码示例6
mysql> create new_database;
mysql> use new_database;
mysql> source (Here you need to import the path of the SQL file);

E.g.:
mysql> source E:/test/dump.sql;