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.
我有一个完整备份的 MYSQL 数据库。
mysqldump -u root --password=SSS -A > D:\bkps\mysql.sql
但是,我需要恢复指定的数据库。
你试过“mysql dbname < backup.sql”吗
我找到了一个糟糕的解决方案:
删除文件中的所有其他查询行并执行。
mysql dbname < backup.sql