1、查看用户权限:
select * from mysql.user
show grants for nn_cms@"192.168.94.%"
2、给用户赋予权限
新建用户并赋予权限:
方法一:
create方式创建的用户默认没有任何权限:create user "meimei"@"localhost" identified by "meimei";
给新创建的用户赋予权限:grant select on*.* to"meimei"@"localhost" ;
方法二:
创建用户的同时给权限:grant select,insert on *.* to "hanhan"@"localhost" identified by "hanhan"
给已存在的指定用户赋予所有权限:
grant all privilegesto on *.* "meimei"@"localhost" ;
3、权限回收
revoke insert on *.* from "hanhan"@"localhost";
网友评论