目录 MySQL远程连接 创建用户.授权 MySQL添加用户.删除用户.授权及撤销权限 MySQL可授予用户的执行权限 MySQL远程连接 远程连接 授权 常见权限表 相关库:mysql 相关表:user 相关字段:select host,user from user; 创建用户.授权 创建用户格式:create user 用户名@ip地址 identified by '密码'; 授权:grant all on *.* To 用户名@'ip地址'; grant select,create o…