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を使用しています。しかし、私の家にはmysqlguiがあります。sqlyogからデータベースをバックアップしてmysqlguiを復元するにはどうすればよいですか?任意のアイデアをお願いします
なぜ物事を複雑にしすぎるのですか?
バックアップを作成する
mysqldump -u <user> -p<password> <database> > backup.sql
戻す
mysql -u <user> -p<password> <database> < backup.sql