mysql 8.0.11 中使用 grant ... identified by 时 error 1064 near 'identified by '密码'' at l

Posted WeiDu

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql 8.0.11 中使用 grant ... identified by 时 error 1064 near 'identified by '密码'' at l相关的知识,希望对你有一定的参考价值。

看一下问题图片:

1 问题:

当使用 grant 权限列表 on 数据库 to \'用户名\'@\'访问主机\' identified by \'密码\'; 时会出现"......near \'identified by \'密码\'\' at line 1"这个错误

2 原因:

因为新版的的mysql版本已经将创建账户和赋予权限的方式分开了

3解决办法:

创建账户:create user \'用户名\'@\'访问主机\' identified by \'密码\';

赋予权限:grant 权限列表 on 数据库 to \'用户名\'@\'访问主机\' ;(修改权限时在后面加with grant option)

 

以上是关于mysql 8.0.11 中使用 grant ... identified by 时 error 1064 near 'identified by '密码'' at l的主要内容,如果未能解决你的问题,请参考以下文章

Navicat 连接MySQL 8.0.11 出现2059错误

(转)Navicat 连接MySQL 8.0.11 出现2059错误

mysql 创建用户命令-grant

mac安装mysql忘记初始密码的解决办法

使用最新版mysql 8.0.11会出现的一些问题

使用最新版mysql 8.0.11会出现的一些问题