How to export a mysql database using Command Prompt?(如何使用命令提示符导出 mysql 数据库?)
问题描述
我有一个非常大的数据库,所以我想使用命令提示符导出它,但我不知道如何操作.
I have a database that is quite large so I want to export it using Command Prompt but I don't know how to.
我正在使用 WAMP.
I am using WAMP.
推荐答案
首先检查你的命令行是否识别 mysql 命令.如果不去命令 &输入:
First check if your command line recognizes mysql command. If not go to command & type in:
set path=c:\wamp\bin\mysql\mysql5.1.36\bin
然后使用此命令导出您的数据库:
Then use this command to export your database:
mysqldump -u YourUser -p YourDatabaseName > wantedsqlfile.sql
然后您将提示输入数据库密码.
这会将数据库导出到您当前所在的路径,同时执行此命令
This exports the database to the path you are currently in, while executing this command
注意:这里有一些关于导入和导出的详细说明
这篇关于如何使用命令提示符导出 mysql 数据库?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何使用命令提示符导出 mysql 数据库?


- 如何将 Byte[] 插入 SQL Server VARBINARY 列 2021-01-01
- 如何使用 pip 安装 Python MySQLdb 模块? 2021-01-01
- SQL 临时表问题 2022-01-01
- 以一个值为轴心,但将一行上的数据按另一行分组? 2022-01-01
- 更改自动增量起始编号? 2021-01-01
- 如何将 SonarQube 6.7 从 MySQL 迁移到 postgresql 2022-01-01
- 远程 mySQL 连接抛出“无法使用旧的不安全身份验证连接到 MySQL 4.1+"来自 XAMPP 的错误 2022-01-01
- 导入具有可变标题的 Excel 文件 2021-01-01
- 在SQL中,如何为每个组选择前2行 2021-01-01
- 使用 Oracle PL/SQL developer 生成测试数据 2021-01-01