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.
我在办公室使用 sqlyog。但在我家我有mysql gui。现在如何从 sqlyog 备份数据库并将其还原为 mysql gui?请有任何想法
为什么要把事情复杂化?
创建备份
mysqldump -u <user> -p<password> <database> > backup.sql
恢复
mysql -u <user> -p<password> <database> < backup.sql