mysql grant 授权

Posted scai-fxh

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql grant 授权相关的知识,希望对你有一定的参考价值。

  

mysql grant 授权

授权格式如:grant 权限 to 数据库对象 on 用户

    1.   grant 授权用户增删改查权限: grant select, insert, update, delete on testdb.* to [email protected]‘%‘

    2. grant 数据库开发人员,创建表、索引、视图、存储过程、函数等权限。
      grant create on testdb.* to [email protected]‘192.168.0.%‘;
      grant alter on testdb.* to [email protected]‘192.168.0.%‘;
      grant drop on testdb.* to [email protected]‘192.168.0.%‘;

    3. 授权某个用户对该库的所有权限
      grant all on *.* to 用户@‘%‘
      执行刷新:flush privileges

    4. 赋予任何主机访问数据库的权限
      GRANT ALL PRIVILEGES ON *.* TO ‘root‘@‘%‘ WITH GRANT OPTION 

以上是关于mysql grant 授权的主要内容,如果未能解决你的问题,请参考以下文章

mysql grant授权

mysql 授权

Mysql授权GRANT ALL PRIVILEGES

mysql grant配置授权

MySQL授权命令grant的使用方法

2.MySQL授权命令grant的使用方法