mysql grant

Posted 晴天小猫

tags:

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

 
grant 权限 on 对象(库.表) to ‘用户名‘@‘主机名‘;
 
如果是创建用户并授权,可以只需要一条命令执行
grant all on db.tb to ‘username‘@‘localhost‘ identfied by ‘pwd‘;
 
all 代表所有权限,但是不代表创建的用户有再创建用户,并授权的权限
 
创建完之后,刷新权限表
flush privileges;
 
查看用户的权限
show grants for [email protected]‘localhost‘;
mysql> show grants for [email protected]‘localhost‘;
+----------------------------------------------------------------------------+
| Grants for [email protected]                                                |
+----------------------------------------------------------------------------+
| GRANT USAGE ON *.* TO ‘oldboy‘@‘localhost‘ IDENTIFIED BY PASSWORD <secret> |
+----------------------------------------------------------------------------+
1 row in set (0.00 sec)
 
USAGE :如果你创建的用户没有授任何权限就会显示USAGE
 

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

MySQL实现允许远程用户登录(使用Navicat for MySQL工具)

MySQL

mysql初学,mysql修改,mysql查找,mysql删除,mysql基本命令

mysql(设置/更改mysql密码,连接MySQL,MySQL常用命令,MySQL两种引擎区别)

MySQL教程

MySQL