标签:备份 str blog mysql数据库 mysql strong mysq sql 数据
数据库备份
查看数据库:show databases
现在我要备份word数据库
退出mysql输入mysqldump -u root -p word > word.sql
查看一下
备份完成
还原数据库
mysqldump -u root -p word < word.sql
完成
标签:备份 str blog mysql数据库 mysql strong mysq sql 数据
原文地址:http://www.cnblogs.com/jw1519/p/6227437.html