「MySQL入門」バックアップとリストアのコマンド
バックアップ
mysqldump -u user -p password testdb > test20170207.sql
リストア
mysql -u user -p password testdb < test20170207.sql
Coding Changes the World
バックアップ
mysqldump -u user -p password testdb > test20170207.sql
リストア
mysql -u user -p password testdb < test20170207.sql