MySQL 用户操作
2020-04-13 本文已影响0人
RicherYY
创建用户
create user '用户名'@'主机名' identified by '123456';
创建远程用户
create user '用户名'@'%' identified by '123456';
创建密码为空
create user '用户名'@'主机名' identified by '';
用户授权查询功能
grant select on 库名.表单名 to 'tese1'@'localhost';
取消授权
revoke select on 库名.表单名 from 'tese1'@'localhost';
删除用户
drop user '库名'@'主机名';