Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个 PHP 网络脚本使用的在线 sql 数据库。
我正在与在他们的计算机上管理本地数据库的人一起工作。
我需要一种方法来用计算机上的更新版本替换我的在线 sql 数据库的内容,最好使用 Windows 命令行。我怎样才能做到这一点?
您可以使用 mysql 实用程序来执行此操作。mysqldump 将创建更新数据库的备份,然后您可以使用 mysql 实用程序将其输入在线数据库。
C:>mysqldump -uUSER -pPASSWORD DATABASE > database.sql C:>mysql -hHOST -pPORT -uUSER -pPASSWORD DATABASE < database.sql