MySQL创建新用户用户远程连接
create user 'username' identified by 'password';
grant all privileges on *.* to 'username'@'host';
flush privileges;
懵懵懂懂迷迷糊糊
create user 'username' identified by 'password';
grant all privileges on *.* to 'username'@'host';
flush privileges;