// 设置utf-8编码
set character_set_client=utf8;
set character_set_connection=utf8;
set character_set_database=utf8;
set character_set_results=utf8;
set character_set_server=utf8;
// 查看编码
show variables like 'character_set_%';
show variables like 'collation_%';
7.mysql开启远程访问
1
// 数据库名:远程访问的某个数据库名,若用*,则是全部数据库
// 表名:远程访问的某个数据库的表,若用*则是某个数据库中的全部表
// 用户名:远程访问所使用的用户名
// IP地址:远程访问的ip,可以用%表示任意ip
// 密码:远程访问用户所使用的登录密码
grant all PRIVILEGES on 数据库名.表名 to 用户名@'IP地址' identified by '密码';
// 例如使用root远程访问无ip限制地所有数据库和表
grant all PRIVILEGES on *.* to root@'%' identified by '密码';