Bootstrap

mysql下载数据库或数据表

mysqldump -uroot-p12345 test testDb > /tmp/testDb.sql 下载数据表
mysqldump -uroot-p12345 test > /tmp/test.sql下载数据库

;