从 XAMPP 导出 MySQL 数据库
我需要发送带有 MySQL 数据库的网站.我已经在XAMPP中做了网站和MySQL数据库,但不知道如何发送数据库.
I need to send my website with the MySQL database. I have done the website and MySQL database in XAMPP but don’t know how to send the database.
推荐答案
你有两种可能的方法来做到这一点
You have 2 possible ways to do that
- 通过命令行
备份:#mysqldump -u root -p[root_password] [database_name] >转储文件名.sql
backup: # mysqldump -u root -p[root_password] [database_name] > dumpfilename.sql
restore:# mysql -u root -p[root_password] [database_name] <转储文件名.sql
restore:# mysql -u root -p[root_password] [database_name] < dumpfilename.sql
- 或使用 phpmyadmin(通常与 XAMP 一起安装),或类似的东西并从浏览器中导出
相关文章