正文开始
mysqldump -h xxx.rds.amazonaws.com -u root -pmysqlpwd --default-character-set=utf8 -- database table1 table2 > copy.sql
如果报错Unknown table 'COLUMN_STATISTICS' in information_schema
补上参数 mysqldump --column-statistics=0 --host=
正文结束