MySQL常用命令和常见问题 --创建数据库并设置字符集 create database wip default character set utf8 collate utf8_general_ci; -- 查看字符集变量 show variables like 'character%'; -- 备份数据库test到文件test.sql mysqldump -uroot -pmax123 test > test.sql -- 恢复数据库 mysql -uroot -pmax123 test <…