权限

作者: 啊哈_6377 | 来源:发表于2020-06-02 15:09 被阅读0次

    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";

    相关文章

      网友评论

          本文标题:权限

          本文链接:https://www.haomeiwen.com/subject/yuvuzhtx.html